philomena/lib/philomena_web/plugs/render_time.ex

12 lines
214 B
Elixir
Raw Normal View History

2019-08-16 02:28:12 +02:00
defmodule PhilomenaWeb.Plugs.RenderTime do
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