Today I solved an error in my Ruby on Rails application.
The problem was that the reset password process led to the root path, rather than the reset password Devise view. This was an error in the production version of the application, which is deployed on Heroku, and NOT on my local development version.
My problem was solved by adjusting the config/environments/production.rb
file.
I had this:
config.action_mailer.default_url_options = { host: 'windaily.app' }
Which needed to be set to this:
config.action_mailer.default_url_options = { host: 'https://www.windaily.app' }
This was a bit of a tough one to figure out because I wasn’t getting any error messages. It just didn’t work.
But now the production app is working with the Devise :recoverable setting implemented.