mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 04:27:59 +01:00
12 lines
275 B
Elixir
12 lines
275 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
|