diff options
author | Mark Felder <feld@FreeBSD.org> | 2020-10-08 12:46:27 -0500 |
---|---|---|
committer | Mark Felder <feld@feld.me> | 2021-03-30 11:10:43 -0500 |
commit | 2557e805a3034f363f0dfaa38cb8b174d89e3d1b (patch) | |
tree | 8da24b652df551e07643173b2ceef8a715e56991 /config | |
parent | e78738173aefd512bbce33c12b4ee3372bdc904b (diff) | |
download | pleroma-2557e805a3034f363f0dfaa38cb8b174d89e3d1b.tar.gz |
Support for configuration via AdminFE
Diffstat (limited to 'config')
-rw-r--r-- | config/description.exs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/config/description.exs b/config/description.exs index 41e5e4056..bb1f43305 100644 --- a/config/description.exs +++ b/config/description.exs @@ -2944,6 +2944,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, type: :group, description: "Custom Runtime Modules", |