You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
asciinema.org/lib/asciinema_web/rails/flash.ex

14 lines
301 B
Elixir

defmodule AsciinemaWeb.Rails.Flash do
import Plug.Conn
def put_rails_flash(conn, key, value) do
key = case key do
:info -> :notice
:error -> :alert
key -> key
end
put_session(conn, :flash, %{discard: [], flashes: %{key => value}})
end
end