I am using the Devise gem in my project.
When a user signs up, Devise sends him a mail for account confirmation.
That mail contains an account confirmation link, and when the user clicks it, their account is activated and the user gets redirected to the [ root :to => ‘home#welcome’ ] page.
How do I change the URL of the above-mentioned account confirmation link?
You can re-define
new_user_confirmation_pathinconfig/routes.rbto accomplish this.