aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Felder <feld@FreeBSD.org>2020-02-14 11:04:27 -0600
committerMark Felder <feld@FreeBSD.org>2020-02-14 11:04:27 -0600
commit31749559e178729e9f4c4211294de8d1e3e16516 (patch)
tree623943a4455038197299cf4d10caf8d01ccc6d8f
parent88a76d0142075dbd71314b8e601a8d347d2f45e9 (diff)
downloadpleroma-31749559e178729e9f4c4211294de8d1e3e16516.tar.gz
Fix MRF docs further. I don't think anyone has actually tested with the old docs.
-rw-r--r--docs/configuration/mrf.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/configuration/mrf.md b/docs/configuration/mrf.md
index 80cfaaa84..bc039689a 100644
--- a/docs/configuration/mrf.md
+++ b/docs/configuration/mrf.md
@@ -74,7 +74,7 @@ As discussed above, the MRF system is a modular system that supports pluggable p
For example, here is a sample policy module which rewrites all messages to "new message content":
```elixir
-defmodule Site.RewritePolicy do
+defmodule Pleroma.Web.ActivityPub.MRF.RewritePolicy do
@moduledoc "MRF policy which rewrites all Notes to have 'new message content'."
@behaviour Pleroma.Web.ActivityPub.MRF
@@ -124,7 +124,7 @@ If you save this file as `lib/pleroma/web/activity_pub/mrf/rewrite_policy.ex`, i
config :pleroma, :instance,
rewrite_policy: [
Pleroma.Web.ActivityPub.MRF.SimplePolicy,
- Site.RewritePolicy
+ Pleroma.Web.ActivityPub.MRF.RewritePolicy
]
```