search for: fdd07479a1f3b6976f4bf09b1cb894c9

Displaying 1 result from an estimated 1 matches for "fdd07479a1f3b6976f4bf09b1cb894c9".

2006 Jul 18
6
before_filter chains and halting at an arbitrary filter
Hi--I''m trying to implement a 2-level authentication system, where I have one before_filter which does general user authentication, and another which does further authorization for a specific controller. I have it set up as follows: before_filter :authorize_level_2 prepend_before_filter :authorize_level_1 which causes authorize_level_1() to run, and then authorize_level_2().