Skip to content

Commit 51113d0

Browse files
authored
fix: align DEFAULTS keys with social_auth.py (#21)
1 parent 9e1826a commit 51113d0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/hope_documents/config/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ def setting(anchor: str) -> str:
1313
DEFAULTS = {
1414
"ADMIN_EMAIL": (str, "", "admin", True, "Initial user created at first deploy"),
1515
"ADMIN_PASSWORD": (str, "", "", True, "Password for initial user created at first deploy"),
16-
"AZURE_CLIENT_KEY": (str, ""),
16+
"AZURE_CLIENT_ID": (str, ""),
1717
"AZURE_CLIENT_SECRET": (str, ""),
18-
"AZURE_TENANT_ID": (str, ""),
18+
"AZURE_TENANT_KEY": (str, ""),
1919
"ALLOWED_HOSTS": (list, [], ["127.0.0.1", "localhost"], True, setting("allowed-hosts")),
2020
"ANYMAIL_IGNORE_RECIPIENT_STATUS": (
2121
bool,

0 commit comments

Comments
 (0)