philomena/lib/pow_lockout/phoenix/router.ex

13 lines
274 B
Elixir
Raw Normal View History

2019-11-15 03:40:35 +01:00
defmodule PowLockout.Phoenix.Router do
@moduledoc false
use Pow.Extension.Phoenix.Router.Base
alias Pow.Phoenix.Router
defmacro routes(_config) do
quote location: :keep do
Router.pow_resources "/unlock", UnlockController, only: [:show]
end
end
end