gitlab-org--gitlab-foss/app/policies/merge_request_policy.rb

16 lines
521 B
Ruby

# frozen_string_literal: true
class MergeRequestPolicy < IssuablePolicy
rule { locked }.policy do
prevent :reopen_merge_request
end
# Only users who can read the merge request can comment.
# Although :read_merge_request is computed in the policy context,
# it would not be safe to prevent :create_note there, since
# note permissions are shared, and this would apply too broadly.
rule { ~can?(:read_merge_request) }.prevent :create_note
end
MergeRequestPolicy.prepend_if_ee('EE::MergeRequestPolicy')