How I can disable all Devise gem flash messages ("successfully signed in","you logged out")? Thanks.
feedback
|
|
Probably the easiest way to do this is to
In your
etc. Next, in your layout, check for blank flash strings before you output them.
| |||||
|
feedback
|
|
Devise includes a handy generator to copy all the views into your project:
This way you can edit the views yourself and decide what you want to keep or throw away (flash messages). | |||
feedback
|