9 lines
234 B
Ruby
9 lines
234 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CommitStatusPolicy < BasePolicy
|
|
delegate { @subject.project }
|
|
|
|
%w[read create update admin].each do |action|
|
|
rule { ~can?(:"#{action}_commit_status") }.prevent :"#{action}_build"
|
|
end
|
|
end
|