6be1dd5a3a
---- 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
50 lines
1.0 KiB
TypeScript
50 lines
1.0 KiB
TypeScript
import {NgModule} from '@angular/core';
|
|
import {CommonModule} from '@angular/common';
|
|
import {RouterModule, Routes} from '@angular/router';
|
|
import {IncentiveResolver} from './incentive-resolver.service';
|
|
import {AuthGuard} from '../auth/auth-guard.service';
|
|
import {IncentiveComponent} from './incentive.component';
|
|
|
|
const incentiveRoutes: Routes = [
|
|
{
|
|
path: 'Incentive',
|
|
component: IncentiveComponent,
|
|
canActivate: [AuthGuard],
|
|
data: {
|
|
permission: 'Service Charge'
|
|
},
|
|
resolve: {
|
|
voucher: IncentiveResolver
|
|
},
|
|
runGuardsAndResolvers: 'always'
|
|
},
|
|
{
|
|
path: 'Incentive/:id',
|
|
component: IncentiveComponent,
|
|
canActivate: [AuthGuard],
|
|
data: {
|
|
permission: 'Service Charge'
|
|
},
|
|
resolve: {
|
|
voucher: IncentiveResolver
|
|
},
|
|
runGuardsAndResolvers: 'always'
|
|
}
|
|
];
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
RouterModule.forChild(incentiveRoutes)
|
|
|
|
],
|
|
exports: [
|
|
RouterModule
|
|
],
|
|
providers: [
|
|
IncentiveResolver
|
|
]
|
|
})
|
|
export class IncentiveRoutingModule {
|
|
}
|