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:
36
overlord/src/app/settings/settings-routing.module.ts
Normal file
36
overlord/src/app/settings/settings-routing.module.ts
Normal file
@ -0,0 +1,36 @@
|
||||
import {NgModule} from '@angular/core';
|
||||
import {CommonModule} from '@angular/common';
|
||||
import {RouterModule, Routes} from '@angular/router';
|
||||
import {AuthGuard} from '../auth/auth-guard.service';
|
||||
import {SettingsComponent} from './settings.component';
|
||||
import {MaintenanceResolver} from './maintenance-resolver.service';
|
||||
import {LockInformationResolver} from './lock-information-resolver.service';
|
||||
|
||||
const settingsRoutes: Routes = [
|
||||
{
|
||||
path: 'Settings',
|
||||
component: SettingsComponent,
|
||||
canActivate: [AuthGuard],
|
||||
data: {
|
||||
permission: 'Maintenance' // 'Lock Date'
|
||||
},
|
||||
resolve: {
|
||||
maintenance: MaintenanceResolver,
|
||||
lockInformation: LockInformationResolver
|
||||
},
|
||||
runGuardsAndResolvers: 'always'
|
||||
}
|
||||
];
|
||||
|
||||
@NgModule({
|
||||
imports: [
|
||||
CommonModule,
|
||||
RouterModule.forChild(settingsRoutes)
|
||||
|
||||
],
|
||||
exports: [
|
||||
RouterModule
|
||||
]
|
||||
})
|
||||
export class SettingsRoutingModule {
|
||||
}
|
||||
Reference in New Issue
Block a user