philomena/lib/philomena_web/plugs/render_time_plug.ex

12 lines
212 B
Elixir
Raw Normal View History

2019-11-17 13:18:21 -05:00
defmodule PhilomenaWeb.RenderTimePlug do
2019-08-15 20:28:12 -04:00
import Plug.Conn
# No options
def init([]), do: false
# Assign current time
def call(conn, _opts) do
conn |> assign(:start_time, Time.utc_now())
end
end