Skip to content

Instantly share code, notes, and snippets.

@abarrak
Last active August 13, 2016 16:14
Show Gist options
  • Save abarrak/efdddd999de2c923f1a349c0fa2817a4 to your computer and use it in GitHub Desktop.
Save abarrak/efdddd999de2c923f1a349c0fa2817a4 to your computer and use it in GitHub Desktop.
Register flash types in Rails

application_controller.rb

class ApplicationController
  add_flash_types :primary, :success, :warning, :danger, :info
end

layout.html.erb

<% flash.each do |name, msg| %>
  <%= content_tag :div, msg, class: "alert alert-#{name}" %>
<% end %>

Shortcut in controllers ..

redirect_to posts_url, success: 'post was created !'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment