diff options
author | 2024-04-15 14:41:15 +0200 | |
---|---|---|
committer | 2024-04-15 14:41:15 +0200 | |
commit | 8b307097914374f3db30f1253b864bd45d05f10b (patch) | |
tree | 4f44c9306e8689792193c5be4678aee371ed53e1 /example | |
parent | [chore] bump bun library versions (#2837) (diff) | |
download | gotosocial-8b307097914374f3db30f1253b864bd45d05f10b.tar.xz |
[chore] Turn `accounts-registration-open` false by default (#2839)
Diffstat (limited to 'example')
-rw-r--r-- | example/config.yaml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/example/config.yaml b/example/config.yaml index 1127b6d46..b5e0fe57f 100644 --- a/example/config.yaml +++ b/example/config.yaml @@ -406,10 +406,11 @@ instance-inject-mastodon-version: false # Config pertaining to creation and maintenance of accounts on the server, as well as defaults for new accounts. -# Bool. Do we want people to be able to just submit sign up requests, or do we want invite only? +# Bool. Allow people to submit new sign-up / registration requests via the form at /signup. +# # Options: [true, false] -# Default: true -accounts-registration-open: true +# Default: false +accounts-registration-open: false # Bool. Are sign up requests required to submit a reason for the request (eg., an explanation of why they want to join the instance)? # Options: [true, false] |