diff options
author | Chocobozzz <me@florianbigard.com> | 2023-01-19 09:27:16 +0100 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2023-01-19 13:53:40 +0100 |
commit | e364e31e25bd1d4b8d801c845a96d6be708f0a18 (patch) | |
tree | 220785a42af361706eb8243960c5da9cddf4d2be /config/default.yaml | |
parent | bc48e33b80f357767b98c1d310b04bdda24c6d46 (diff) | |
download | PeerTube-e364e31e25bd1d4b8d801c845a96d6be708f0a18.tar.gz PeerTube-e364e31e25bd1d4b8d801c845a96d6be708f0a18.tar.zst PeerTube-e364e31e25bd1d4b8d801c845a96d6be708f0a18.zip |
Implement signup approval in server
Diffstat (limited to 'config/default.yaml')
-rw-r--r-- | config/default.yaml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/config/default.yaml b/config/default.yaml index b2c418a0a..37059e9e0 100644 --- a/config/default.yaml +++ b/config/default.yaml | |||
@@ -382,9 +382,15 @@ contact_form: | |||
382 | 382 | ||
383 | signup: | 383 | signup: |
384 | enabled: false | 384 | enabled: false |
385 | |||
385 | limit: 10 # When the limit is reached, registrations are disabled. -1 == unlimited | 386 | limit: 10 # When the limit is reached, registrations are disabled. -1 == unlimited |
387 | |||
386 | minimum_age: 16 # Used to configure the signup form | 388 | minimum_age: 16 # Used to configure the signup form |
389 | |||
390 | # Users fill a form to register so moderators can accept/reject the registration | ||
391 | requires_approval: true | ||
387 | requires_email_verification: false | 392 | requires_email_verification: false |
393 | |||
388 | filters: | 394 | filters: |
389 | cidr: # You can specify CIDR ranges to whitelist (empty = no filtering) or blacklist | 395 | cidr: # You can specify CIDR ranges to whitelist (empty = no filtering) or blacklist |
390 | whitelist: [] | 396 | whitelist: [] |