aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/+admin/system/system.routes.ts
blob: 87e4b25b3bddf9f11fc01ae3c9dcf640183db60e (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
                                        




                                                     
                                         



                                     












                                             
                                  









                                             
                                  

           







                                              
                                   

           


                      


     
import { Routes } from '@angular/router'
import { UserRightGuard } from '@app/core'
import { UserRight } from '@shared/models'
import { DebugComponent } from './debug'
import { JobsComponent } from './jobs/jobs.component'
import { LogsComponent } from './logs'
import { RunnersRoutes } from './runners'

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

      ...RunnersRoutes
    ]
  }
]