- 🌱
ActionController::Basemặc định cung cấp key:noticecho#redirect_to
class flash_demo
if true
redirect_to root_path, notice: "Notice"
else
flash[:error] = "Error"
redirect_to root_path
end
end- 🌱 Nhưng nếu bạn muốn thêm
:errornhư:noticethì có thể thỠcách nà y nhé!
class flash_demo
add_flash_types :error
if true
redirect_to root_path, notice: "Notice"
else
redirect_to root_path, error: "Error"
end
end- 🌱 Refer: add_flash_keys