You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you want the user to confirm their email address when they change it (which seems like a must if you are getting them to confirm it on sign up), there are errors.
The field is missing in the schema. error: undefined method unconfirmed_email=' for an instance of Spree::User`
If you want the user to confirm their email address when they change it (which seems like a must if you are getting them to confirm it on sign up), there are errors.
error: undefined method
unconfirmed_email=' for an instance of Spree::User`Fixed by adding it:
rails generate migration AddUnconfirmedEmailToSpreeUsers unconfirmed_email:string
2 The user.send_confirmation_instructions method call needs to be overriden to send the store argument I suppose. Which you do
I'm not sure where that would be changed.
The text was updated successfully, but these errors were encountered: