option to insert new tenant

This commit is contained in:
2021-08-31 10:51:08 +02:00
parent af0e4ffd74
commit e238b1fb9f
5 changed files with 20 additions and 5 deletions

View File

@ -18,6 +18,7 @@ const routes: Routes = [
{ path: 'parkings', component: MyParkingsComponent, canActivate: [ AuthGuardService ] },
{ path: 'commercialunits', component: MyCommercialUnitsComponent, canActivate: [ AuthGuardService ] },
{ path: 'tenant/:id', component: TenantDetailsComponent, canActivate: [ AuthGuardService ] },
{ path: 'tenant', component: TenantDetailsComponent, canActivate: [ AuthGuardService ] },
{ path: 'logout', component: LogoutComponent },
{ path: 'login', component: LoginComponent }
]