Commit e9bef9c0 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Merge pull request #2258 from jasl8r/issue-2193-grack-read-only-access

Support read-only access for git over HTTP
parents 439d03bb 6cf5d7c9
...@@ -38,12 +38,12 @@ module Grack ...@@ -38,12 +38,12 @@ module Grack
end end
def validate_get_request def validate_get_request
true can?(user, :download_code, project)
end end
def validate_post_request def validate_post_request
if @request.path_info.end_with?('git-upload-pack') 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') elsif @request.path_info.end_with?('git-receive-pack')
action = if project.protected_branch?(current_ref) action = if project.protected_branch?(current_ref)
:push_code_to_protected_branches :push_code_to_protected_branches
......
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