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
e9bef9c0
Commit
e9bef9c0
authored
Dec 12, 2012
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2258 from jasl8r/issue-2193-grack-read-only-access
Support read-only access for git over HTTP
parents
439d03bb
6cf5d7c9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lib/gitlab/backend/grack_auth.rb
lib/gitlab/backend/grack_auth.rb
+2
-2
No files found.
lib/gitlab/backend/grack_auth.rb
View file @
e9bef9c0
...
...
@@ -38,12 +38,12 @@ module Grack
end
def
validate_get_request
true
can?
(
user
,
:download_code
,
project
)
end
def
validate_post_request
if
@request
.
path_info
.
end_with?
(
'git-upload-pack'
)
can?
(
user
,
:
push
_code
,
project
)
can?
(
user
,
:
download
_code
,
project
)
elsif
@request
.
path_info
.
end_with?
(
'git-receive-pack'
)
action
=
if
project
.
protected_branch?
(
current_ref
)
:push_code_to_protected_branches
...
...
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