Reputation: 110970
currently with Devise when you set a password the flash notice: "Your password was set successfully. You are now signed in" is displayed.
How can you disable that flash notice?
Thanks
Upvotes: 3
Views: 1220
Reputation: 12868
Devise uses flash messages with I18n. To customize your app, the simplest way is to set up your locale file:
en:
devise:
passwords:
updated: ""
Empty messages won't be shown.
Upvotes: 3