I have a Devise auth working on my Rails 4 app, I'm facing this problem which I have my Member model with some extra fields being validated (required) only on the update method (so it doesn't messed up the sign up form) but I just noticed that the "reset password" also uses the update method, but in a different controller (DeviseController). Here's what's happening:
- I try to reset a member's password
- submit the form (only password and password_confirmation fields)
- Got errors about the extra/required fields
Is there a way to tell Devise to only request the password and password_confirmation fields on this specific form?
Thanks!