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

measurement_policy.rb « usage_trends « analytics « policies « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: da3c0927ea5c8bbcf4ce5afc9156498669c5af75 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module Analytics
  module UsageTrends
    class MeasurementPolicy < BasePolicy
      delegate { :global }
    end
  end
end