From 06bd449be73ec06dc7a81dbeaec4b6ef4232c8a4 Mon Sep 17 00:00:00 2001 From: _Bastler <_Bastler@bstly.de> Date: Tue, 28 Sep 2021 09:44:58 +0200 Subject: [PATCH] added profile edit --- src/app/app-routing.module.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/app-routing.module.ts b/src/app/app-routing.module.ts index 32b8783..418e576 100644 --- a/src/app/app-routing.module.ts +++ b/src/app/app-routing.module.ts @@ -30,6 +30,7 @@ import { DividertestComponent } from './pages/dividertest/dividertest.component' const routes: Routes = [ { path: 'profile/:username', component: UserComponent, canActivate: [ AuthUpdateGuard ] }, + { path: 'edit-profile', component: ProfileComponent, canActivate: [ AuthenticatedGuard ] }, { path: '', component: MainComponent, children: [ { path: '', redirectTo: "/services", pathMatch: 'full' },