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

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

module Packages
  module Protection
    class RulePolicy < BasePolicy
      delegate { @subject.project }
    end
  end
end