diff options
author | Alex Gleason <alex@alexgleason.me> | 2021-07-27 08:29:53 -0500 |
---|---|---|
committer | Alex Gleason <alex@alexgleason.me> | 2021-07-27 08:29:53 -0500 |
commit | 33a19c002a9196cb67d3379d5237f9490c957f1b (patch) | |
tree | ba6cbd601f1c20560d627677b1332324898fb01f /docs/configuration/mrf.md | |
parent | 94db0b7cd604022c65b9f70e5c5a939ac3ed4801 (diff) | |
parent | 7acdab1f305bac744a302e3b44e2e920d6bc8a47 (diff) | |
download | pleroma-33a19c002a9196cb67d3379d5237f9490c957f1b.tar.gz pleroma-33a19c002a9196cb67d3379d5237f9490c957f1b.zip |
Merge remote-tracking branch 'pleroma/develop' into errorview-json-fix
Diffstat (limited to 'docs/configuration/mrf.md')
-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 |