Displaying 1 result from an estimated 1 matches for "init_players".
2005 Nov 16
3
controller before_filter issues
Hi,
Some controller filters:
before_filter :require_logged_in, :only => [:create, :new, :confirm]
before_filter :init_players, :only => [:create, :new, :confirm]
The first one, you guessed it, redirects a user if he''s not logged in.
Now when I hit this page and I''m not logged in, the 2nd filter gets
executed and throws an error, because it depends on the user being
logged in. I don''t re...