diff options
author | feld <feld@feld.me> | 2021-06-07 20:10:20 +0000 |
---|---|---|
committer | feld <feld@feld.me> | 2021-06-07 20:10:20 +0000 |
commit | 676c3c96dce8a620c86bca03cc4997b0593d54fb (patch) | |
tree | 2d28815e28953553e6d46a4685ebd1cbdfda9e2a /test/fixtures/modules | |
parent | 64bc0c69ed6b77283905b04585f03c23cbedbe03 (diff) | |
parent | 6fcfa33e4ec39c66e07ca8187f618b9c6f5c25c3 (diff) | |
download | pleroma-676c3c96dce8a620c86bca03cc4997b0593d54fb.tar.gz pleroma-676c3c96dce8a620c86bca03cc4997b0593d54fb.zip |
Merge branch 'cycles-mrf-policy' into 'develop'
Recompilation speedup: create MRF.Policy behaviour separate from MRF module
See merge request pleroma/pleroma!3450
Diffstat (limited to 'test/fixtures/modules')
-rw-r--r-- | test/fixtures/modules/good_mrf.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fixtures/modules/good_mrf.ex b/test/fixtures/modules/good_mrf.ex index 39d0f14ec..5afa1c1d1 100644 --- a/test/fixtures/modules/good_mrf.ex +++ b/test/fixtures/modules/good_mrf.ex @@ -1,5 +1,5 @@ defmodule Fixtures.Modules.GoodMRF do - @behaviour Pleroma.Web.ActivityPub.MRF + @behaviour Pleroma.Web.ActivityPub.MRF.Policy @impl true def filter(a), do: {:ok, a} |