Tagged Questions

2
votes
3answers
1k views

rails: put and interruption in before filter

I want a before filter like "must_have_permission_to_write" that when called if user hasn't permission to write renders a message saying "you can't do that!" and return. Problem is I'm getting "can ...
1
vote
1answer
271 views

Rails before_filter check multiple roles

In my before filter, I call a method containing the following code: authorized_for_roles :administrator In my application_controller def authorized_for_roles(*roles) roles.each{|role_name| return ...
1
vote
1answer
150 views

before_filter checking multiple roles

In application_controller I have the following method: def authorized_for_roles(*roles) roles.each{|role_name| return true if current_user.has_role?(role_name)} false end In one of my ...