Hi Jim;

This is a shot in the dark, but chances are in your 
application_controller.rb, you need to tell Rails to skip the 
"login_required" filter for the reset_password action. You can do this as 
follows. At the top of your application_controller.rb file, make sure your 
"except" clause includes these actions:

  before_filter :except => [:login, :signup, :activate, :do_activate, 
       :do_signup, :forgot_password, :reset_password,
       :do_reset_password] do
     login_required unless User.count == 0
 
  end

Hope that helps.
Tim

-- 
You received this message because you are subscribed to the Google Groups "Hobo 
Users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/hobousers/-/MVg2RUpjQ0VxajhK.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/hobousers?hl=en.

Reply via email to