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 /docs | |
parent | 64bc0c69ed6b77283905b04585f03c23cbedbe03 (diff) | |
parent | 6fcfa33e4ec39c66e07ca8187f618b9c6f5c25c3 (diff) | |
download | pleroma-676c3c96dce8a620c86bca03cc4997b0593d54fb.tar.gz |
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 'docs')
-rw-r--r-- | docs/configuration/mrf.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/configuration/mrf.md b/docs/configuration/mrf.md index 9e8c0a2d7..5618634a2 100644 --- a/docs/configuration/mrf.md +++ b/docs/configuration/mrf.md @@ -82,7 +82,7 @@ For example, here is a sample policy module which rewrites all messages to "new ```elixir defmodule Pleroma.Web.ActivityPub.MRF.RewritePolicy do @moduledoc "MRF policy which rewrites all Notes to have 'new message content'." - @behaviour Pleroma.Web.ActivityPub.MRF + @behaviour Pleroma.Web.ActivityPub.MRF.Policy # Catch messages which contain Note objects with actual data to filter. # Capture the object as `object`, the message content as `content` and the |