diff options
author | Alex Gleason <alex@alexgleason.me> | 2021-06-07 14:22:08 -0500 |
---|---|---|
committer | Alex Gleason <alex@alexgleason.me> | 2021-06-07 14:22:08 -0500 |
commit | fe4c4a7178ac4df76a9f4a83c05f8445c5ff9bf2 (patch) | |
tree | 1fc31b0a0f09ddbaf5163333f8998472c4afb9a9 /test/fixtures | |
parent | ca1eac01ddea8cb13059592630ac5399aeac9b65 (diff) | |
download | pleroma-fe4c4a7178ac4df76a9f4a83c05f8445c5ff9bf2.tar.gz pleroma-fe4c4a7178ac4df76a9f4a83c05f8445c5ff9bf2.zip |
MRF: create MRF.Policy behaviour separate from MRF module
Speeds up recompilation by reducing compile-time deps
Diffstat (limited to 'test/fixtures')
-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} |