fix: implement backend configuration system and ORCID API client integration

This commit is contained in:
Alexis
2026-05-15 12:56:31 +02:00
parent b9c23bc6fe
commit d3ffb2cfda
3 changed files with 15 additions and 2 deletions
+1 -1
View File
@@ -20,7 +20,7 @@ ORCID_ENDPOINTS = {
def _orcid_endpoints() -> dict[str, str]:
key = "production" if settings.is_production else "sandbox"
key = settings.orcid_environment # "sandbox" | "production"
return ORCID_ENDPOINTS[key]