diff options
author | Douwe Maan <douwe@gitlab.com> | 2015-02-18 21:59:15 +0100 |
---|---|---|
committer | Douwe Maan <douwe@gitlab.com> | 2015-02-18 21:59:15 +0100 |
commit | 3d6b042e9e8613162b92b2f61342f2f0ee919924 (patch) | |
tree | cf537da9ed33ad48406ca1a5658f297827d4cc2a /lib | |
parent | 0b8e41aae2d6d64d18d8034e863e72cc832d0b83 (diff) | |
download | gitlab-ce-3d6b042e9e8613162b92b2f61342f2f0ee919924.tar.gz |
Fix push access check when not signed in.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/gitlab/git_access.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/gitlab/git_access.rb b/lib/gitlab/git_access.rb index 6444cec7eb5..9b31190a882 100644 --- a/lib/gitlab/git_access.rb +++ b/lib/gitlab/git_access.rb @@ -6,6 +6,8 @@ module Gitlab attr_reader :params, :project, :git_cmd, :user def self.can_push_to_branch?(user, project, ref) + return false unless user + if project.protected_branch?(ref) && !(project.developers_can_push_to_protected_branch?(ref) && project.team.developer?(user)) user.can?(:push_code_to_protected_branches, project) |