feat: implement Google OAuth2 authentication flow
Some checks failed
CI / Get Changed Files (pull_request) Successful in 8s
CI / eslint (pull_request) Successful in 33s
CI / prettier (pull_request) Failing after 36s
CI / oxlint (pull_request) Successful in 42s
CI / Checkstyle Main (pull_request) Failing after 1m8s
CI / Docker frontend validation (pull_request) Successful in 1m46s
CI / test-build (pull_request) Successful in 1m46s
CI / Docker backend validation (pull_request) Successful in 2m36s

This commit is contained in:
Constantin Simonis 2025-05-21 11:34:00 +02:00
commit 07b594fa36
No known key found for this signature in database
GPG key ID: 3878FF77C24AF4D2
11 changed files with 342 additions and 18 deletions

View file

@ -39,6 +39,15 @@ export const routes: Routes = [
import('./feature/auth/oauth2/oauth2-callback.component').then(
(m) => m.OAuth2CallbackComponent
),
data: { provider: 'github' }
},
{
path: 'oauth2/callback/google',
loadComponent: () =>
import('./feature/auth/oauth2/oauth2-callback.component').then(
(m) => m.OAuth2CallbackComponent
),
data: { provider: 'google' }
},
{
path: 'game/blackjack',