feat: Add GitHub as an available OAuth provider and remove database initialization logs

This commit is contained in:
JSC
2025-09-21 18:58:20 +02:00
parent c13e18c290
commit 35b857fd0d
2 changed files with 1 additions and 4 deletions

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"],
"providers": ["google", "github"],
}