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
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
08018b7a
Commit
08018b7a
authored
Jun 23, 2016
by
Patricio Cano
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Render :forbidden *only* if HTTP is disabled.
parent
58418515
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
app/controllers/projects/git_http_controller.rb
app/controllers/projects/git_http_controller.rb
+5
-1
No files found.
app/controllers/projects/git_http_controller.rb
View file @
08018b7a
...
...
@@ -19,7 +19,7 @@ class Projects::GitHttpController < Projects::ApplicationController
render_ok
elsif
receive_pack?
&&
receive_pack_allowed?
render_ok
elsif
!
upload_pack_allow
ed?
elsif
http_block
ed?
render_not_allowed
else
render_not_found
...
...
@@ -180,6 +180,10 @@ class Projects::GitHttpController < Projects::ApplicationController
@access
=
Gitlab
::
GitAccess
.
new
(
user
,
project
,
'http'
).
check
(
'git-upload-pack'
)
end
def
http_blocked?
access
.
message
.
include?
(
'HTTP'
)
end
def
receive_pack_allowed?
return
false
unless
Gitlab
.
config
.
gitlab_shell
.
receive_pack
...
...
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