feat: add oidc authorization code with pkce login flow

This commit is contained in:
Bastian Wagner
2026-08-17 15:43:17 +02:00
parent dedb3fff40
commit bd91a3da4a
15 changed files with 215 additions and 2 deletions

View File

@@ -1,3 +1,4 @@
import { Routes } from '@angular/router';
import { Callback } from './auth/callback/callback';
export const routes: Routes = [];
export const routes: Routes = [{ path: 'auth/callback', component: Callback }];