forked from AkkomaGang/akkoma
13 lines
249 B
Elixir
13 lines
249 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(_token), do: true
|
|
end
|