summaryrefslogtreecommitdiff
path: root/config/description.exs
diff options
context:
space:
mode:
authorlain <lain@soykaf.club>2020-07-29 11:27:26 +0000
committerlain <lain@soykaf.club>2020-07-29 11:27:26 +0000
commit79f9ddd8b725519f719219b70b8dd8558d5212cf (patch)
tree24f6940744d9d832ea3ab2747e7d1c2fe890fb3a /config/description.exs
parent93dbba9b8a5aacbbf43a45a07e27b328579eabf8 (diff)
parentf688c8df82b955b50552b3198ddc153a716451c2 (diff)
downloadpleroma-79f9ddd8b725519f719219b70b8dd8558d5212cf.tar.gz
pleroma-79f9ddd8b725519f719219b70b8dd8558d5212cf.zip
Merge branch 'by-approval' into 'develop'
Registrations "by approval" mode Closes #1931 See merge request pleroma/pleroma!2757
Diffstat (limited to 'config/description.exs')
-rw-r--r--config/description.exs13
1 files changed, 13 insertions, 0 deletions
diff --git a/config/description.exs b/config/description.exs
index 91261c1e1..30a503696 100644
--- a/config/description.exs
+++ b/config/description.exs
@@ -662,6 +662,11 @@ config :pleroma, :config_description, [
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,
description: "Enable federation with other instances"
@@ -875,6 +880,14 @@ config :pleroma, :config_description, [
]
},
%{
+ key: :registration_reason_length,
+ type: :integer,
+ description: "Maximum registration reason length. Default: 500.",
+ suggestions: [
+ 500
+ ]
+ },
+ %{
key: :external_user_synchronization,
type: :boolean,
description: "Enabling following/followers counters synchronization for external users"