diff options
author | Alex Gleason <alex@alexgleason.me> | 2021-06-14 19:02:23 -0500 |
---|---|---|
committer | Alex Gleason <alex@alexgleason.me> | 2021-06-14 19:02:23 -0500 |
commit | 5e2c63d97d73cb6ce5f428190b6d00260455b05c (patch) | |
tree | 13a5994ccccb4264ea08590b700ab9035bd10e20 /docs/configuration/mrf.md | |
parent | 811dcc192809eac5c785d28177bf188a0fe654a1 (diff) | |
parent | a8adc300d4cfc88ef19f1977e32068437ed4ad00 (diff) | |
download | pleroma-5e2c63d97d73cb6ce5f428190b6d00260455b05c.tar.gz |
Merge remote-tracking branch 'pleroma/develop' into frontend-enable
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 |