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

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

module Analytics
  module CycleAnalytics
    class ValueStreamPolicy < ::BasePolicy
      delegate { subject.namespace }
    end
  end
end