aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/admin/video-abuses/video-abuses.routes.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/admin/video-abuses/video-abuses.routes.ts')
-rw-r--r--client/src/app/admin/video-abuses/video-abuses.routes.ts28
1 files changed, 0 insertions, 28 deletions
diff --git a/client/src/app/admin/video-abuses/video-abuses.routes.ts b/client/src/app/admin/video-abuses/video-abuses.routes.ts
deleted file mode 100644
index 26a761887..000000000
--- a/client/src/app/admin/video-abuses/video-abuses.routes.ts
+++ /dev/null
@@ -1,28 +0,0 @@
1import { Routes } from '@angular/router';
2
3import { VideoAbusesComponent } from './video-abuses.component';
4import { VideoAbuseListComponent } from './video-abuse-list';
5
6export const VideoAbusesRoutes: Routes = [
7 {
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 titleSuffix: ' - Video abuses list'
23 }
24 }
25 }
26 ]
27 }
28];