summaryrefslogtreecommitdiff
path: root/app/controllers/admin/dev_ops_report_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/admin/dev_ops_report_controller.rb')
-rw-r--r--app/controllers/admin/dev_ops_report_controller.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/app/controllers/admin/dev_ops_report_controller.rb b/app/controllers/admin/dev_ops_report_controller.rb
new file mode 100644
index 00000000000..bed0d51c331
--- /dev/null
+++ b/app/controllers/admin/dev_ops_report_controller.rb
@@ -0,0 +1,13 @@
+# frozen_string_literal: true
+
+class Admin::DevOpsReportController < Admin::ApplicationController
+ include Analytics::UniqueVisitsHelper
+
+ track_unique_visits :show, target_id: 'i_analytics_dev_ops_score'
+
+ # rubocop: disable CodeReuse/ActiveRecord
+ def show
+ @metric = DevOpsReport::Metric.order(:created_at).last&.present
+ end
+ # rubocop: enable CodeReuse/ActiveRecord
+end