aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/admin/friends/friends.routes.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/admin/friends/friends.routes.ts')
-rw-r--r--client/src/app/admin/friends/friends.routes.ts37
1 files changed, 0 insertions, 37 deletions
diff --git a/client/src/app/admin/friends/friends.routes.ts b/client/src/app/admin/friends/friends.routes.ts
deleted file mode 100644
index a9a06539b..000000000
--- a/client/src/app/admin/friends/friends.routes.ts
+++ /dev/null
@@ -1,37 +0,0 @@
1import { Routes } from '@angular/router';
2
3import { FriendsComponent } from './friends.component';
4import { FriendAddComponent } from './friend-add';
5import { FriendListComponent } from './friend-list';
6
7export const FriendsRoutes: Routes = [
8 {
9 path: 'friends',
10 component: FriendsComponent,
11 children: [
12 {
13 path: '',
14 redirectTo: 'list',
15 pathMatch: 'full'
16 },
17 {
18 path: 'list',
19 component: FriendListComponent,
20 data: {
21 meta: {
22 titleSuffix: ' - Friends list'
23 }
24 }
25 },
26 {
27 path: 'add',
28 component: FriendAddComponent,
29 data: {
30 meta: {
31 titleSuffix: ' - Add friends'
32 }
33 }
34 }
35 ]
36 }
37];