pleroma/test/support/captcha_mock.ex

18 lines
401 B
Elixir
Raw Normal View History

2018-12-23 15:11:29 -05:00
# Pleroma: A lightweight social networking server
# Copyright © 2017-2018 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
2018-12-15 14:38:39 -05: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 15:01:44 -05:00
@impl Service
def cleanup(), do: :ok
2018-12-15 14:38:39 -05:00
end