Skip to content

Instantly share code, notes, and snippets.

@delba
Created June 30, 2013 19:25
Show Gist options
  • Select an option

  • Save delba/5896505 to your computer and use it in GitHub Desktop.

Select an option

Save delba/5896505 to your computer and use it in GitHub Desktop.
Flash messages
# 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