Commit 36cac35b authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Dont allow remove of protected branch

Signed-off-by: default avatarDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
parent a9d60b3b
...@@ -44,8 +44,12 @@ module Gitlab ...@@ -44,8 +44,12 @@ module Gitlab
def push_allowed?(user, project, ref, oldrev, newrev, forced_push) def push_allowed?(user, project, ref, oldrev, newrev, forced_push)
if user && user_allowed?(user) if user && user_allowed?(user)
action = if project.protected_branch?(ref) action = if project.protected_branch?(ref)
# we dont allow force push to protected branch
if forced_push.to_s == 'true' if forced_push.to_s == 'true'
:force_push_code_to_protected_branches :force_push_code_to_protected_branches
# and we dont allow remove of protected branch
elsif newrev =~ /0000000/
:remove_protected_branches
else else
:push_code_to_protected_branches :push_code_to_protected_branches
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment