mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-14 15:16:04 +10:00
Allow non authenticated access to avatars
This commit is contained in:
@@ -1,4 +1,7 @@
|
||||
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
|
||||
|
||||
Reference in New Issue
Block a user