Skip to content
Snippets Groups Projects
Commit 3c858eff authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
Browse files

Allow non authenticated access to avatars

parent 7257940c
No related branches found
No related tags found
No related merge requests found
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])
Loading
Loading
@@ -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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment