1
0
Fork 0
mirror of https://akkoma.dev/AkkomaGang/akkoma.git synced 2025-01-23 22:26:49 +00:00
akkoma/test/support/captcha_mock.ex

15 lines
363 B
Elixir
Raw Normal View History

2018-12-23 20:11:29 +00: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 22:38:39 +03:00
defmodule Pleroma.Captcha.Mock do
alias Pleroma.Captcha.Service
@behaviour Service
@impl Service
def new, do: %{type: :mock}
2018-12-15 22:38:39 +03:00
@impl Service
def validate(_token, _captcha, _data), do: :ok
2018-12-15 22:38:39 +03:00
end