aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/admin/video-abuses/video-abuses.routes.ts
blob: 26a761887fe2f9aef6b8241492c9936583e793a2 (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
import { Routes } from '@angular/router';

import { VideoAbusesComponent } from './video-abuses.component';
import { VideoAbuseListComponent } from './video-abuse-list';

export const VideoAbusesRoutes: Routes = [
  {
      path: 'video-abuses',
      component: VideoAbusesComponent
      ,
      children: [
        {
          path: '',
          redirectTo: 'list',
          pathMatch: 'full'
        },
        {
          path: 'list',
          component: VideoAbuseListComponent,
          data: {
            meta: {
              titleSuffix: ' - Video abuses list'
            }
          }
        }
      ]
    }
];