aboutsummaryrefslogtreecommitdiff
path: root/test/support/captcha_mock.ex
blob: 898aa17b884d4eec85622801bcb276f7e3818eb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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