mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 04:27:59 +01:00
16 lines
No EOL
276 B
Elixir
16 lines
No EOL
276 B
Elixir
defmodule PowLockout do
|
|
@moduledoc false
|
|
use Pow.Extension.Base
|
|
|
|
@impl true
|
|
def ecto_schema?(), do: true
|
|
|
|
@impl true
|
|
def phoenix_controller_callbacks?(), do: true
|
|
|
|
@impl true
|
|
def phoenix_router?(), do: true
|
|
|
|
@impl true
|
|
def phoenix_messages?(), do: true
|
|
end |