Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
38fbcb99
Commit
38fbcb99
authored
Nov 11, 2016
by
Lin Jen-Shin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
So deploy key might not have a corresponding user
parent
24d9f51e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lib/gitlab/git_access.rb
lib/gitlab/git_access.rb
+2
-2
No files found.
lib/gitlab/git_access.rb
View file @
38fbcb99
...
@@ -46,7 +46,7 @@ module Gitlab
...
@@ -46,7 +46,7 @@ module Gitlab
def
download_access_check
def
download_access_check
if
user
if
user
user_download_access_check
user_download_access_check
elsif
!
Guest
.
can?
(
:download_code
,
project
)
elsif
deploy_key
.
nil?
&&
!
Guest
.
can?
(
:download_code
,
project
)
raise
UnauthorizedError
,
ERROR_MESSAGES
[
:download
]
raise
UnauthorizedError
,
ERROR_MESSAGES
[
:download
]
end
end
end
end
...
@@ -91,7 +91,7 @@ module Gitlab
...
@@ -91,7 +91,7 @@ module Gitlab
def
deploy_key_push_access_check
(
changes
)
def
deploy_key_push_access_check
(
changes
)
if
deploy_key
.
can_push?
if
deploy_key
.
can_push?
check_repository_existence!
check_repository_existence!
check_change_access!
(
changes
)
check_change_access!
(
changes
)
if
user
else
else
raise
UnauthorizedError
,
ERROR_MESSAGES
[
:deploy_key
]
raise
UnauthorizedError
,
ERROR_MESSAGES
[
:deploy_key
]
end
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment