2019-08-13 23:29:15 +02:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 07:49:20 +01:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2019-08-13 23:29:15 +02:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule MRFModuleMock do
|
2021-06-07 21:22:08 +02:00
|
|
|
@behaviour Pleroma.Web.ActivityPub.MRF.Policy
|
2019-08-13 23:29:15 +02:00
|
|
|
|
|
|
|
@impl true
|
|
|
|
def filter(message), do: {:ok, message}
|
|
|
|
|
|
|
|
@impl true
|
2019-08-14 00:36:24 +02:00
|
|
|
def describe, do: {:ok, %{mrf_module_mock: "some config data"}}
|
2019-08-13 23:29:15 +02:00
|
|
|
end
|