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
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
4745424b
Commit
4745424b
authored
Mar 24, 2015
by
Douwe Maan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Respond with full GitAccess error if user has project read access.
parent
4830b2be
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
CHANGELOG
CHANGELOG
+1
-0
lib/api/internal.rb
lib/api/internal.rb
+1
-1
No files found.
CHANGELOG
View file @
4745424b
...
...
@@ -31,6 +31,7 @@ v 7.10.0 (unreleased)
- Replace commits calendar with faster contribution calendar that includes issues and merge requests
- Add inifinite scroll to user page activity
- Don't show commit comment button when user is not signed in.
- Make Git-over-SSH errors more descriptive.
v 7.9.0
- Send EmailsOnPush email when branch or tag is created or deleted.
...
...
lib/api/internal.rb
View file @
4745424b
...
...
@@ -50,7 +50,7 @@ module API
status
=
access
.
check
(
params
[
:action
],
params
[
:changes
])
end
if
project
&&
status
&&
status
.
allowed
?
if
project
&&
access
.
can_read_project
?
status
else
Gitlab
::
GitAccessStatus
.
new
(
false
,
'No such project'
)
...
...
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