aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/+admin/system/system.routes.ts
blob: 2d851794d22faa038bbc28ee63591f2cd49fab24 (plain) (tree)
1
2
3
4
5
6
7





                                                                      
                                                         

































                                             










                                              



       
import { Routes } from '@angular/router'
import { UserRightGuard } from '../../core'
import { UserRight } from '../../../../../shared'
import { JobsComponent } from '@app/+admin/system/jobs/jobs.component'
import { LogsComponent } from '@app/+admin/system/logs'
import { SystemComponent } from '@app/+admin/system/system.component'
import { DebugComponent } from '@app/+admin/system/debug'

export const SystemRoutes: Routes = [
  {
    path: 'system',
    component: SystemComponent,
    data: {
    },
    children: [
      {
        path: '',
        redirectTo: 'jobs',
        pathMatch: 'full'
      },
      {
        path: 'jobs',
        canActivate: [ UserRightGuard ],
        component: JobsComponent,
        data: {
          meta: {
            userRight: UserRight.MANAGE_JOBS,
            title: 'Jobs'
          }
        }
      },
      {
        path: 'logs',
        canActivate: [ UserRightGuard ],
        component: LogsComponent,
        data: {
          meta: {
            userRight: UserRight.MANAGE_LOGS,
            title: 'Logs'
          }
        }
      },
      {
        path: 'debug',
        canActivate: [ UserRightGuard ],
        component: DebugComponent,
        data: {
          meta: {
            userRight: UserRight.MANAGE_DEBUG,
            title: 'Debug'
          }
        }
      }
    ]
  }
]