diff options
author | lain <lain@soykaf.club> | 2019-08-14 15:30:40 +0200 |
---|---|---|
committer | lain <lain@soykaf.club> | 2019-08-14 15:30:40 +0200 |
commit | 560dbad538ba978d00116b1b037502ba2185cb5e (patch) | |
tree | 1f133f4ae7480228fbf55a8e5741c0e60bdf24d0 /test/support/mrf_module_mock.ex | |
parent | 2674db14a2ee29e98265c0c0b1db412835b6bbed (diff) | |
parent | 744e2ce8b4286c41dbea33c1b918bc92b774307e (diff) | |
download | pleroma-560dbad538ba978d00116b1b037502ba2185cb5e.tar.gz pleroma-560dbad538ba978d00116b1b037502ba2185cb5e.zip |
Merge remote-tracking branch 'origin/develop' into pleroma-conversations
Diffstat (limited to 'test/support/mrf_module_mock.ex')
-rw-r--r-- | test/support/mrf_module_mock.ex | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/support/mrf_module_mock.ex b/test/support/mrf_module_mock.ex new file mode 100644 index 000000000..12c7e22bc --- /dev/null +++ b/test/support/mrf_module_mock.ex @@ -0,0 +1,13 @@ +# Pleroma: A lightweight social networking server +# Copyright © 2017-2018 Pleroma Authors <https://pleroma.social/> +# SPDX-License-Identifier: AGPL-3.0-only + +defmodule MRFModuleMock do + @behaviour Pleroma.Web.ActivityPub.MRF + + @impl true + def filter(message), do: {:ok, message} + + @impl true + def describe, do: {:ok, %{mrf_module_mock: "some config data"}} +end |