Skip to content

Commit

Permalink
fixup! Update ENABLE_PUBLIC_SIGNUP and FORCE_LOGIN_FOR_APPLICATION to…
Browse files Browse the repository at this point in the history
… true by default
  • Loading branch information
theskumar committed Oct 31, 2023
1 parent e0ee988 commit db094a0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"modelcluster",
"pagedown",
"ratelimit",
"SIGNUP",
"WAGTAILADMIN",
"wagtailcore"
]
Expand Down
4 changes: 2 additions & 2 deletions docs/setup/administrators/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,11 @@ This determines the length of time for which the user will remain logged in. The

### If users should be able to register accounts without first creating applications

ENABLE_PUBLIC_SIGNUP = env.bool('ENABLE_PUBLIC_SIGNUP', False)
ENABLE_PUBLIC_SIGNUP = env.bool('ENABLE_PUBLIC_SIGNUP', True)

### If users are forced to log in before creating applications

FORCE_LOGIN_FOR_APPLICATION = env.bool('FORCE_LOGIN_FOR_APPLICATION', False)
FORCE_LOGIN_FOR_APPLICATION = env.bool('FORCE_LOGIN_FOR_APPLICATION', True)

### Set the allowed file extension for all uploads fields.

Expand Down

0 comments on commit db094a0

Please sign in to comment.