In the application controller before filter.
class ApplicationController < ActionController::Base
before_filter :authenticate
def authenticate
# How do we know which controller and action was targetted?
end
end
|
In the application controller before filter.
|
||||
|
|
|||
|
You can get full url object using
now you can get components as
By default you can also use |
|||||||
|
|
In Rails 3.2 you no longer need to call controller.action_name explicitly instead just "action_name".
|
|||
|
|