forked from AkkomaGang/akkoma
Fix MRF docs further. I don't think anyone has actually tested with the old docs.
This commit is contained in:
parent
88a76d0142
commit
31749559e1
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
]
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in a new issue