Moved to Angular 6.0
---- Pending * Table width for the points column in incentive * Linting * keyboard navigation where it was used earlier * can remove the unused totals calculated serverside in productledger * spinner and loading bars * Activate Guard for Employee Function tabs * Progress for Fingerprint uploads * deleted reconcile and receipe features as they were not being used * focus the right control on component load
This commit is contained in:
49
overlord/src/app/cash-flow/cash-flow-routing.module.ts
Normal file
49
overlord/src/app/cash-flow/cash-flow-routing.module.ts
Normal file
@ -0,0 +1,49 @@
|
||||
import {NgModule} from '@angular/core';
|
||||
import {CommonModule} from '@angular/common';
|
||||
import {RouterModule, Routes} from '@angular/router';
|
||||
import {CashFlowResolver} from './cash-flow-resolver.service';
|
||||
import {AuthGuard} from '../auth/auth-guard.service';
|
||||
import {CashFlowComponent} from './cash-flow.component';
|
||||
|
||||
const cashFlowRoutes: Routes = [
|
||||
{
|
||||
path: 'CashFlow',
|
||||
component: CashFlowComponent,
|
||||
canActivate: [AuthGuard],
|
||||
data: {
|
||||
permission: 'Cash Flow'
|
||||
},
|
||||
resolve: {
|
||||
info: CashFlowResolver
|
||||
},
|
||||
runGuardsAndResolvers: 'always'
|
||||
},
|
||||
{
|
||||
path: 'CashFlow/:id',
|
||||
component: CashFlowComponent,
|
||||
canActivate: [AuthGuard],
|
||||
data: {
|
||||
permission: 'Cash Flow'
|
||||
},
|
||||
resolve: {
|
||||
info: CashFlowResolver
|
||||
},
|
||||
runGuardsAndResolvers: 'always'
|
||||
}
|
||||
];
|
||||
|
||||
@NgModule({
|
||||
imports: [
|
||||
CommonModule,
|
||||
RouterModule.forChild(cashFlowRoutes)
|
||||
|
||||
],
|
||||
exports: [
|
||||
RouterModule
|
||||
],
|
||||
providers: [
|
||||
CashFlowResolver
|
||||
]
|
||||
})
|
||||
export class CashFlowRoutingModule {
|
||||
}
|
||||
Reference in New Issue
Block a user