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