summaryrefslogtreecommitdiff
path: root/test/support/captcha_mock.ex
blob: 410318dc4e72c12a868babdf57ce0b189fc13efe (plain)
1
2
3
4
5
6
7
8
9
10
defmodule Pleroma.Captcha.Mock do
  alias Pleroma.Captcha.Service
  @behaviour Service

  @impl Service
  def new(), do: %{type: :mock}

  @impl Service
  def validate(_token, _captcha, _data), do: :ok
end