d5bf57a6af
Enable frozen string in: * app/presenters * app/policies Partially addresses #47424.
11 lines
266 B
Ruby
11 lines
266 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ProtectedBranchPolicy < BasePolicy
|
|
delegate { @subject.project }
|
|
|
|
rule { can?(:admin_project) }.policy do
|
|
enable :create_protected_branch
|
|
enable :update_protected_branch
|
|
enable :destroy_protected_branch
|
|
end
|
|
end
|