Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Rails before_filter and action identification

I want to write a before_filter in my controller to identify the action which will execute next. This is for authorization purposes (this is somewhat like role_requirement plugin do..)

Ex: if a user types this url http://localhost:3000/users, default it goes to users/index action. And in my users controller i'm having a before filter method say 'check_permission' and i want that method to get 'index' as the action.

like image 313
sameera207 Avatar asked Apr 19 '10 17:04

sameera207


1 Answers

The action_name method on the controller should give you what you're looking for. It's not documented, though, so there is no guarantee it won't disappear someday.

before_filter { |controller| logger.debug "Running before the #{controller.action_name} action" }
like image 174
Steve Madsen Avatar answered Sep 30 '22 07:09

Steve Madsen