logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://hacktivis.me/git/pleroma.git
commit: 93e4972b50f9bb0a07a7074fbab2aedbdc0cc4eb
parent bee7e419597615ac6852942fe563166feba3fe73
Author: Alex Gleason <alex@alexgleason.me>
Date:   Thu, 27 Jan 2022 15:01:20 -0600

Add InlineQuotePolicy as a default MRF

Diffstat:

Mconfig/config.exs6+++++-
1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/config/config.exs b/config/config.exs @@ -860,7 +860,11 @@ config :pleroma, :restrict_unauthenticated, config :pleroma, Pleroma.Web.ApiSpec.CastAndValidate, strict: false config :pleroma, :mrf, - policies: [Pleroma.Web.ActivityPub.MRF.ObjectAgePolicy, Pleroma.Web.ActivityPub.MRF.TagPolicy], + policies: [ + Pleroma.Web.ActivityPub.MRF.ObjectAgePolicy, + Pleroma.Web.ActivityPub.MRF.TagPolicy, + Pleroma.Web.ActivityPub.MRF.InlineQuotePolicy + ], transparency: true, transparency_exclusions: []