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

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

module Operations
  class FeatureFlagPolicy < BasePolicy
    delegate { @subject.project }
  end
end