Skip to content

Commit

Permalink
Fixed registration in the .env.sample
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrey Rusakov committed Dec 4, 2024
1 parent 25a639b commit aae3b8e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .env.sample
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,13 @@ DEFAULT_LANGUAGE=en
# Geometric settings
DEFAULT_SRID=2056

# Registration disabled by default
REGISTRATION_ENABLED = False
# Registration enabled by default
REGISTRATION_ENABLED=True

# OIDC parameters
OIDC_ENABLED = False
OIDC_ENABLED=False
OIDC_OP_BASE_URL="please set oidc op base url"
ZITADEL_PROJECT="set_zitadel_project"
OIDC_RP_CLIENT_ID="set oidc rp client id"
OIDC_RP_CLIENT_SECRET="set oidc rp client secret"
OIDC_PRIVATE_KEYFILE="keyfile"
OIDC_PRIVATE_KEYFILE="keyfile"
2 changes: 1 addition & 1 deletion urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,4 +106,4 @@
router.register_additional_route_to_root(f'{ROOTURL}auth/register', 'auth_register')
urlpatterns += [
path(f'{ROOTURL}auth/register/', views.RegisterView.as_view(), name='auth_register'),
]
]

0 comments on commit aae3b8e

Please sign in to comment.