Merge remote-tracking branch 'upstream/develop' into mrf-silence

This commit is contained in:
Alex Gleason 2020-07-29 13:01:16 -05:00
commit 702f0fb822
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7
35 changed files with 721 additions and 40 deletions

View file

@ -661,6 +661,11 @@ config :pleroma, :config_description, [
type: :boolean,
description: "Require users to confirm their emails before signing in"
},
%{
key: :account_approval_required,
type: :boolean,
description: "Require users to be manually approved by an admin before signing in"
},
%{
key: :federating,
type: :boolean,
@ -874,6 +879,14 @@ config :pleroma, :config_description, [
2048
]
},
%{
key: :registration_reason_length,
type: :integer,
description: "Maximum registration reason length. Default: 500.",
suggestions: [
500
]
},
%{
key: :external_user_synchronization,
type: :boolean,