Commit 1c089a85 authored by Marin Jankovski's avatar Marin Jankovski

Use shorter search for protected branch status.

parent 78865a0c
......@@ -471,7 +471,7 @@ class Project < ActiveRecord::Base
end
def developers_can_push_to_protected_branch?(branch_name)
protected_branches.map{ |pb| pb.developers_can_push if pb.name == branch_name }.compact.first
protected_branches.any? { |pb| pb.name == branch_name && pb.developers_can_push }
end
def forked?
......
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