How I can disable all Devise gem flash messages ("successfully signed in","you logged out")? Thanks.

link|improve this question

58% accept rate
Duplicates this question stackoverflow.com/questions/5281365/… – Voldy Apr 23 '11 at 11:19
feedback

2 Answers

up vote 13 down vote accepted

Probably the easiest way to do this is to

  1. Define each message as a blank string
  2. Check the length of the string before you show a flash message.

In your devise.en.yml file, specify each message as empty:

en:
  errors:
    messages:
      not_found: ''
      already_confirmed: ''
      not_locked: ''

etc. Next, in your layout, check for blank flash strings before you output them.

<% flash.each do |key, value| %>
  <%= content_tag :div, value, :class => "flash #{key}" unless value.blank? %>
<% end %>
link|improve this answer
Thanks again Brandon! – Marat_Galiev Apr 23 '11 at 8:17
@Brandon Tilley Thanks it works for me. – monk151947 Aug 9 '11 at 8:17
feedback

Devise includes a handy generator to copy all the views into your project:

rails generate devise:views

This way you can edit the views yourself and decide what you want to keep or throw away (flash messages).

link|improve this answer
It looks like an answer for another question. You can't disable flash messages with that. See Brandon's answer. – Voldy Apr 23 '11 at 11:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.