Blankman
Blankman

Reputation: 267370

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 from my reset password page:

flash[:notice] = "Password has been reset"
redirect_to :action => 'login'

Does something not look right?

Upvotes: 1

Views: 228

Answers (1)

Zabba
Zabba

Reputation: 65517

For redirect_to, you can also do this:

redirect_to :action => 'login', :notice => "A flash message"

Upvotes: 2

Related Questions