Commit 4745424b authored by Douwe Maan's avatar Douwe Maan

Respond with full GitAccess error if user has project read access.

parent 4830b2be
...@@ -31,6 +31,7 @@ v 7.10.0 (unreleased) ...@@ -31,6 +31,7 @@ v 7.10.0 (unreleased)
- Replace commits calendar with faster contribution calendar that includes issues and merge requests - Replace commits calendar with faster contribution calendar that includes issues and merge requests
- Add inifinite scroll to user page activity - Add inifinite scroll to user page activity
- Don't show commit comment button when user is not signed in. - Don't show commit comment button when user is not signed in.
- Make Git-over-SSH errors more descriptive.
v 7.9.0 v 7.9.0
- Send EmailsOnPush email when branch or tag is created or deleted. - Send EmailsOnPush email when branch or tag is created or deleted.
......
...@@ -50,7 +50,7 @@ module API ...@@ -50,7 +50,7 @@ module API
status = access.check(params[:action], params[:changes]) status = access.check(params[:action], params[:changes])
end end
if project && status && status.allowed? if project && access.can_read_project?
status status
else else
Gitlab::GitAccessStatus.new(false, 'No such project') Gitlab::GitAccessStatus.new(false, 'No such project')
......
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