Created
June 30, 2013 19:25
-
-
Save delba/5896505 to your computer and use it in GitHub Desktop.
Flash messages
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # DEFAULTS (notice and alert) | |
| flash.notice = 'notice' | |
| flash[:notice] = 'notice' | |
| redirect_to root_url, notice: 'notice' | |
| notice # in view | |
| # CUSTOM TYPES | |
| add_flash_types :warning | |
| flash[:warning] = 'warning' | |
| # no accessor flash#warning= and flash#warning | |
| redirect_to root_url, warning: 'warning' | |
| warning # in view |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment