overhead stuff
This commit is contained in:
@ -13,6 +13,8 @@ import { PremiseDetailsComponent } from './premise-details/premise-details.compo
|
||||
import { FlatDetailsComponent } from './flat-details/flat-details.component';
|
||||
import { ParkingDetailsComponent } from './parking-details/parking-details.component';
|
||||
import { CommercialUnitDetailsComponent } from './commercial-unit-details/commercial-unit-details.component';
|
||||
import { OverheadAdvanceListComponent } from './overhead-advance-list/overhead-advance-list.component';
|
||||
import { OverheadAdvanceDetailsComponent } from './overhead-advance-details/overhead-advance-details.component';
|
||||
|
||||
|
||||
const routes: Routes = [
|
||||
@ -31,6 +33,9 @@ const routes: Routes = [
|
||||
{ path: 'parking', component: ParkingDetailsComponent, canActivate: [ AuthGuardService ] },
|
||||
{ path: 'commercialunit/:id', component: CommercialUnitDetailsComponent, canActivate: [ AuthGuardService ] },
|
||||
{ path: 'commercialunit', component: CommercialUnitDetailsComponent, canActivate: [ AuthGuardService ] },
|
||||
{ path: 'overheadadvances', component: OverheadAdvanceListComponent, canActivate: [ AuthGuardService ] },
|
||||
{ path: 'overheadadvance/:id', component: OverheadAdvanceDetailsComponent, canActivate: [ AuthGuardService ] },
|
||||
{ path: 'overheadadvance', component: OverheadAdvanceDetailsComponent, canActivate: [ AuthGuardService ] },
|
||||
{ path: 'logout', component: LogoutComponent },
|
||||
{ path: 'login', component: LoginComponent }
|
||||
]
|
||||
|
Reference in New Issue
Block a user