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