2018-12-15 20:38:39 +01:00
|
|
|
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
|
2018-12-16 21:01:44 +01:00
|
|
|
|
|
|
|
@impl Service
|
|
|
|
def cleanup(_token), do: true
|
2018-12-15 20:38:39 +01:00
|
|
|
end
|