debian-mirror-gitlab/app/policies/protected_branch_policy.rb
2022-10-11 01:57:18 +05:30

15 lines
365 B
Ruby

# frozen_string_literal: true
class ProtectedBranchPolicy < BasePolicy
delegate { @subject.project }
rule { can?(:admin_project) }.policy do
enable :read_protected_branch
enable :create_protected_branch
enable :update_protected_branch
enable :destroy_protected_branch
end
end
ProtectedBranchPolicy.prepend_mod_with('ProtectedBranchPolicy')