aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+admin/system/runners/runners.routes.ts
blob: fabe687d67e91a37417f75c12394a0105aa34ea9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import { Routes } from '@angular/router'
import { UserRightGuard } from '@app/core'
import { UserRight } from '@shared/models'
import { RunnerJobListComponent } from './runner-job-list'
import { RunnerListComponent } from './runner-list'
import { RunnerRegistrationTokenListComponent } from './runner-registration-token-list'

export const RunnersRoutes: Routes = [
  {
    path: 'runners',
    canActivate: [ UserRightGuard ],
    data: {
      userRight: UserRight.MANAGE_RUNNERS
    },
    children: [
      {
        path: '',
        redirectTo: 'jobs-list',
        pathMatch: 'full'
      },

      {
        path: 'jobs-list',
        component: RunnerJobListComponent,
        data: {
          meta: {
            title: $localize`List runner jobs`
          }
        }
      },

      {
        path: 'runners-list',
        component: RunnerListComponent,
        data: {
          meta: {
            title: $localize`List remote runners`
          }
        }
      },

      {
        path: 'registration-tokens-list',
        component: RunnerRegistrationTokenListComponent,
        data: {
          meta: {
            title: $localize`List registration runner tokens`
          }
        }
      }
    ]
  }
]