Allow non authenticated access to avatars

This commit is contained in:
Dmitriy Zaporozhets
2015-02-23 23:28:50 -08:00
parent 7257940c52
commit 3c858eff0c
+9
View File
@@ -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