3ddb74a8315ce99dfbd94289ce6634e08b317a18
[anni] / test / fixtures / modules / good_mrf.ex
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
4
5 defmodule Fixtures.Modules.GoodMRF do
6   @behaviour Pleroma.Web.ActivityPub.MRF.Policy
7
8   @impl true
9   def filter(a), do: {:ok, a}
10
11   @impl true
12   def describe, do: %{}
13
14   @impl true
15   def config_description do
16     %{
17       key: :good_mrf,
18       related_policy: "Fixtures.Modules.GoodMRF",
19       label: "Good MRF",
20       description: "Some description"
21     }
22   end
23 end