在我的幾個控制器,我有重定向/閃存的消息ruby on rails flash messages - :alert:error:notice and:success?
redirect_to products_url, :notice => "message here",
redirect_to states_url, :error => "oops!" etc...
在我的會話控制器,然而,一旦認證成功,我有 閃光燈[:成功]「歡迎」 = redirect_to用戶
我希望能夠在我的其他控制器中做類似 :success =>「yay!」
這主要是爲了美觀/一致性的目的,但是:notice,:alert和:error唯一可用的閃存類型/是否可以添加其他類型?我有道理嗎?
謝謝!