authlogic-password-reset-tutorial
authlogic-password-reset-tutorial copied to clipboard
Notifier method name
Hi, in User model it is described that we add:
Notifier.deliver_password_reset_instructions(self)
However, the method in Notifier is described as:
def password_reset_instructions(user)
missing the deliver word.
Should be on User:
Notifier.password_reset_instructions(self).deliver_now