Bugfixes: Redirect URI protocol, org create #25

Merged
rixx merged 3 commits from bugfixes into main 2025-03-24 10:39:47 +00:00
Showing only changes of commit 507f429f1e - Show all commits

View file

@ -174,6 +174,8 @@ ACCOUNT_UNIQUE_EMAIL = True
ACCOUNT_LOGIN_METHODS = {"email"}
ACCOUNT_SIGNUP_FIELDS = ["email*", "password1*", "password2*"]
ACCOUNT_SIGNUP_FORM_CLASS = "servala.frontend.forms.auth.ServalaSignupForm"
if ALLOWED_HOSTS or not DEBUG:
ACCOUNT_DEFAULT_HTTP_PROTOCOL = "https"
AUTHENTICATION_BACKENDS = [
"rules.permissions.ObjectPermissionBackend",