2016-09-29 09:46:39 +05:30
|
|
|
module Ci
|
|
|
|
class BuildPolicy < CommitStatusPolicy
|
2017-09-10 17:25:29 +05:30
|
|
|
condition(:protected_ref) do
|
|
|
|
access = ::Gitlab::UserAccess.new(@user, project: @subject.project)
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
if @subject.tag?
|
|
|
|
!access.can_create_tag?(@subject.ref)
|
|
|
|
else
|
|
|
|
!access.can_update_branch?(@subject.ref)
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
rule { protected_ref }.prevent :update_build
|
2016-09-29 09:46:39 +05:30
|
|
|
end
|
|
|
|
end
|