How to display a Rails flash notice upon redirect?

后端 未结 6 1308
天命终不由人
天命终不由人 2021-01-31 01:21

I have the following code in a Rails controller:

flash.now[:notice] = \'Successfully checked in\'
redirect_to check_in_path

Then in the /check_

6条回答
  •  谎友^
    谎友^ (楼主)
    2021-01-31 02:09

    redirect_to new_user_session_path, alert: "Invalid email or password"
    

    in place of :alert you can use :notice

    to display

提交回复
热议问题