fix: Remove GitHub from available OAuth providers list
Some checks failed
Backend CI / lint (push) Failing after 11s
Backend CI / test (push) Failing after 1m34s

This commit is contained in:
JSC
2025-09-20 21:11:50 +02:00
parent bccfcafe0e
commit fb0e5e919c

View File

@@ -331,7 +331,7 @@ async def oauth_callback(
async def get_oauth_providers() -> dict[str, list[str]]:
"""Get list of available OAuth providers."""
return {
"providers": ["google", "github"],
"providers": ["google"],
}