social.metadata.moe/test/support/captcha_mock.ex

11 lines
200 B
Elixir
Raw Normal View History

2018-12-16 04:38:39 +09: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
end