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
897a2de5
Commit
897a2de5
authored
Feb 23, 2015
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow non authenticated access to avatars
parent
a4118ca4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
app/controllers/uploads_controller.rb
app/controllers/uploads_controller.rb
+9
-0
No files found.
app/controllers/uploads_controller.rb
View file @
897a2de5
class
UploadsController
<
ApplicationController
skip_before_filter
:authenticate_user!
,
:reject_blocked
before_filter
:authorize_access
def
show
model
=
params
[
:model
].
camelize
.
constantize
.
find
(
params
[
:id
])
uploader
=
model
.
send
(
params
[
:mounted_as
])
...
...
@@ -14,4 +17,10 @@ class UploadsController < ApplicationController
redirect_to
uploader
.
url
end
end
def
authorize_access
unless
params
[
:mounted_as
]
==
'avatar'
authenticate_user!
&&
reject_blocked
end
end
end
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