mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 12:37:58 +01:00
13 lines
274 B
Elixir
13 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
|