diff options
author | Alex Gleason <alex@alexgleason.me> | 2021-07-12 16:23:06 -0500 |
---|---|---|
committer | Alex Gleason <alex@alexgleason.me> | 2021-07-12 16:23:06 -0500 |
commit | e40b58fd563d327727fb3f304a5d1a55b2f6f2e4 (patch) | |
tree | 8ae773cf3b60c62fcd8096ed787da72440edc7a5 /docs/configuration/mrf.md | |
parent | 9a0cb34c8c3a3c47ad5074bd73ad5369ee852192 (diff) | |
parent | 173e977e283789a814278c63bc81f40a13942e21 (diff) | |
download | pleroma-e40b58fd563d327727fb3f304a5d1a55b2f6f2e4.tar.gz pleroma-e40b58fd563d327727fb3f304a5d1a55b2f6f2e4.zip |
Merge remote-tracking branch 'pleroma/develop' into fix-object-deletion-timeout
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 |