Welcome to mirror list, hosted at ThFree Co, Russian Federation.

usage_trends_controller.rb « admin « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7073f71a1a8dacd2023fe9e0a0fc7c82c6350bfb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

class Admin::UsageTrendsController < Admin::ApplicationController
  include Analytics::UniqueVisitsHelper

  track_unique_visits :index, target_id: 'i_analytics_instance_statistics'

  feature_category :devops_reports

  def index
  end
end