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
{{ message }}
This repository was archived by the owner on Feb 8, 2026. It is now read-only.
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 methodunconfirmed_email=' for an instance of Spree::User`Fixed by adding it:
rails generate migration AddUnconfirmedEmailToSpreeUsers unconfirmed_email:string2 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.