Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
heptapod
heptapod
Commits
4b4bdbf3e996
Commit
6cf5d7c9
authored
Dec 11, 2012
by
Jeremy Slater
Browse files
Support read-only access for git over HTTP
parent
449a8296348a
Changes
1
Hide whitespace changes
Inline
Side-by-side
lib/gitlab/backend/grack_auth.rb
View file @
4b4bdbf3
...
...
@@ -38,12 +38,12 @@ def valid?
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