Reputation: 267370
I don't see any flash message on the page when I do this from my reset password page:
flash[:notice] = "Password has been reset"
redirect_to :action => 'login'
Does something not look right?
Upvotes: 1
Views: 228
Reputation: 65517
For redirect_to
, you can also do this:
redirect_to :action => 'login', :notice => "A flash message"
Upvotes: 2