]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+admin/video-abuses/video-abuses.routes.ts
Use typescript standard and lint all files
[github/Chocobozzz/PeerTube.git] / client / src / app / +admin / video-abuses / video-abuses.routes.ts
CommitLineData
df98563e 1import { Routes } from '@angular/router'
11ac88de 2
df98563e
C
3import { VideoAbusesComponent } from './video-abuses.component'
4import { VideoAbuseListComponent } from './video-abuse-list'
11ac88de
C
5
6export const VideoAbusesRoutes: Routes = [
7 {
1f0215a9
C
8 path: 'video-abuses',
9 component: VideoAbusesComponent
10 ,
11 children: [
12 {
13 path: '',
14 redirectTo: 'list',
15 pathMatch: 'full'
16 },
17 {
18 path: 'list',
19 component: VideoAbuseListComponent,
20 data: {
21 meta: {
22 title: 'Video abuses list'
11ac88de
C
23 }
24 }
1f0215a9
C
25 }
26 ]
27 }
df98563e 28]