diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2016-11-20 17:18:15 +0100 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2016-11-21 22:09:45 +0100 |
commit | 693b1aba4675f7e3d850e0f6d07dbfc7bdff9b8c (patch) | |
tree | d6004d282a55d995eecba78bae95173bd0f11767 /client/src/app/admin/admin-routing.module.ts | |
parent | 2c8d4697db4b5a2d645b7bfcaf91093a64597958 (diff) | |
download | PeerTube-693b1aba4675f7e3d850e0f6d07dbfc7bdff9b8c.tar.gz PeerTube-693b1aba4675f7e3d850e0f6d07dbfc7bdff9b8c.tar.zst PeerTube-693b1aba4675f7e3d850e0f6d07dbfc7bdff9b8c.zip |
Client: split in angular modules
Diffstat (limited to 'client/src/app/admin/admin-routing.module.ts')
-rw-r--r-- | client/src/app/admin/admin-routing.module.ts | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/client/src/app/admin/admin-routing.module.ts b/client/src/app/admin/admin-routing.module.ts new file mode 100644 index 000000000..6bff25033 --- /dev/null +++ b/client/src/app/admin/admin-routing.module.ts | |||
@@ -0,0 +1,30 @@ | |||
1 | import { NgModule } from '@angular/core'; | ||
2 | import { RouterModule, Routes } from '@angular/router'; | ||
3 | |||
4 | import { AdminComponent } from './admin.component'; | ||
5 | import { FriendsRoutes } from './friends'; | ||
6 | import { RequestsRoutes } from './requests'; | ||
7 | import { UsersRoutes } from './users'; | ||
8 | |||
9 | const adminRoutes: Routes = [ | ||
10 | { | ||
11 | path: 'admin', | ||
12 | component: AdminComponent, | ||
13 | children: [ | ||
14 | { | ||
15 | path: '', | ||
16 | redirectTo: 'users', | ||
17 | pathMatch: 'full' | ||
18 | }, | ||
19 | ...FriendsRoutes, | ||
20 | ...RequestsRoutes, | ||
21 | ...UsersRoutes | ||
22 | ] | ||
23 | } | ||
24 | ]; | ||
25 | |||
26 | @NgModule({ | ||
27 | imports: [ RouterModule.forChild(adminRoutes) ], | ||
28 | exports: [ RouterModule ] | ||
29 | }) | ||
30 | export class AdminRoutingModule {} | ||