pleroma/test/support/captcha_mock.ex

15 lines
363 B
Elixir
Raw Normal View History

2018-12-23 21:11:29 +01:00
# Pleroma: A lightweight social networking server
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
2018-12-23 21:11:29 +01:00
# SPDX-License-Identifier: AGPL-3.0-only
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}
2018-12-15 20:38:39 +01:00
@impl Service
def validate(_token, _captcha, _data), do: :ok
2018-12-15 20:38:39 +01:00
end