philomena/lib/pow_lockout/phoenix/router.ex
2019-11-14 21:40:35 -05:00

12 lines
274 B
Elixir

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