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