forked from AkkomaGang/akkoma
13 lines
242 B
Elixir
13 lines
242 B
Elixir
defmodule Pleroma.Captcha.Mock do
|
|
alias Pleroma.Captcha.Service
|
|
@behaviour Service
|
|
|
|
@impl Service
|
|
def new(), do: %{type: :mock}
|
|
|
|
@impl Service
|
|
def validate(_token, _captcha), do: true
|
|
|
|
@impl Service
|
|
def cleanup(), do: :ok
|
|
end
|