feat: add user creation on login (wip)

This commit is contained in:
Constantin Simonis 2025-02-13 13:16:59 +01:00
parent 44c7d8be57
commit 793f3f6834
No known key found for this signature in database
GPG key ID: 758DD9C506603183
13 changed files with 196 additions and 9 deletions

View file

@ -2,12 +2,17 @@ import { Routes } from '@angular/router';
import { LandingComponent } from './feature/landing/landing.component';
import { HomeComponent } from './feature/home/home.component';
import { authGuard } from './auth.guard';
import { LoginSuccessComponent } from './login-success/login-success.component';
export const routes: Routes = [
{
path: '',
component: LandingComponent,
},
{
path: 'login/success',
component: LoginSuccessComponent,
},
{
path: 'home',
component: HomeComponent,