mirror of
https://git.youjo.love/youjo/youjo-be.git
synced 2025-01-20 11:16:04 +01:00
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
|