mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-11 03:39:13 +00:00
10 lines
200 B
Elixir
10 lines
200 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
|
|
end
|