Support for configuration via AdminFE

This commit is contained in:
Mark Felder 2020-10-08 12:46:27 -05:00 committed by Mark Felder
parent e78738173a
commit 2557e805a3
1 changed files with 17 additions and 0 deletions

View File

@ -2942,6 +2942,23 @@ config :pleroma, :config_description, [
}
]
},
%{
group: :pleroma,
key: :mrf_follow_bot,
tab: :mrf,
related_policy: "Pleroma.Web.ActivityPub.MRF.FollowBotPolicy",
label: "MRF FollowBot Policy",
type: :group,
description: "Automatically follows newly discovered accounts.",
children: [
%{
key: :follower_nickname,
type: :string,
description: "The name of the bot account to use for following newly discovered users.",
suggestions: ["followbot"]
}
]
},
%{
group: :pleroma,
key: :modules,