diff options
author | rinpatch <rinpatch@sdf.org> | 2019-06-11 22:15:28 +0300 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2019-06-11 22:15:28 +0300 |
commit | ced59be1ae8deb4dd505215062d45be3e262710e (patch) | |
tree | 55184ed0e1c1348eb102ee844a69b15b452c6a6a | |
parent | 3235923276650ac3a5b8a64c985f118d0f6e309e (diff) | |
download | pleroma-ced59be1ae8deb4dd505215062d45be3e262710e.tar.gz |
Document TagPolicy in `rewrite_policy` section
-rw-r--r-- | docs/config.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/config.md b/docs/config.md index b62b80490..54632fbda 100644 --- a/docs/config.md +++ b/docs/config.md @@ -86,6 +86,7 @@ config :pleroma, Pleroma.Emails.Mailer, * `Pleroma.Web.ActivityPub.MRF.NoOpPolicy`: Doesn’t modify activities (default) * `Pleroma.Web.ActivityPub.MRF.DropPolicy`: Drops all activities. It generally doesn’t makes sense to use in production * `Pleroma.Web.ActivityPub.MRF.SimplePolicy`: Restrict the visibility of activities from certains instances (See ``:mrf_simple`` section) + * `Pleroma.Web.ActivityPub.MRF.TagPolicy`: Applies policies to individual users based on tags, which can be set using pleroma-fe/admin-fe/any other app that supports Pleroma Admin API. For example it allows marking posts from individual users nsfw (sensitive) * `Pleroma.Web.ActivityPub.MRF.SubchainPolicy`: Selectively runs other MRF policies when messages match (see ``:mrf_subchain`` section) * `Pleroma.Web.ActivityPub.MRF.RejectNonPublic`: Drops posts with non-public visibility settings (See ``:mrf_rejectnonpublic`` section) * `Pleroma.Web.ActivityPub.MRF.EnsureRePrepended`: Rewrites posts to ensure that replies to posts with subjects do not have an identical subject and instead begin with re:. |