Will my flash message show up if I do a redirect_to action?
I don't see any flash message on the page when I do this fro开发者_Python百科m my reset password page:
flash[:notice] = "Password has been reset"
redirect_to :action => 'login'
Does something not look right?
For redirect_to
, you can also do this:
redirect_to :action => 'login', :notice => "A flash message"
精彩评论