I have an app that uses authlogic for login mechanism.
My sign up page requires no password confirmation but password reset page does.
acts_as_authentic do |a|
a.require_password_confirmation = true
end
The above code turns on password confirmation for all the actions but which is not required in my case. It should be turned on when password reset is called and off when user signs up.
Is there a way to turn this on and off on a conditional basis ?
Thanks