• 🌱 ActionController::Base mặc định cung cấp key :notice cho #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 :error như :notice thì 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