How to escape from the before_filter for the particular acti

Hi,

We use the following code in the ApplicationController.

before_filter :login_required

Iam aware, this will be called for every action.

How to escape for the particular action?

Thanks,
Ayyanar. A

Use the :except option.

before_filter :login_required, :except => [“other”]

http://railsbrain.com

Hi Ryan,

We need to restrict the child controller action. I think we can do this
using skip_filter in the child class. Iam exploring on the syntax.

Thanks,
Ayyanar. A