I'm using the Devise gem and I just would like to show a successful message when someone ask for a new password (if forgotten). Currently, when submitted, the button redirects to sign_in without any message.

Thank you

link|improve this question

40% accept rate
feedback

2 Answers

up vote 1 down vote accepted

Rather than using the flash and trying to work out how Devise does it's thing (not for the faint-hearted) by extending its controllers, how about checking the referrer, and displaying a message in the view if it matches your 'remind me of my password' path?

In the view:

<% if request.env['HTTP_REFERER'] == "/give/me/a/new/password" %>
  <h2>Your password stuff is all good now.</h2>
<% end %>
link|improve this answer
YEAH ! Thank you ! – Max Jul 21 '11 at 8:33
perhaps mark it as accepted if this was the best approach? – stef Jul 25 '11 at 11:29
sorry i'm new on stackoverflow – Max Jul 25 '11 at 13:14
feedback

flash[:success] = "Something Something"

link|improve this answer
This will require customization on the devise controllers. Please post that code if you have it. – Jesse Wolgamott Jul 20 '11 at 15:35
Ok thanks ! But which controller do I have to override ? passwords_controller ? I'm quite lost :/ – Max Jul 20 '11 at 20:08
feedback

Your Answer

 
or
required, but never shown

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