aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/account/account-routing.module.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/account/account-routing.module.ts')
-rw-r--r--client/src/app/account/account-routing.module.ts43
1 files changed, 0 insertions, 43 deletions
diff --git a/client/src/app/account/account-routing.module.ts b/client/src/app/account/account-routing.module.ts
deleted file mode 100644
index 070b9b5c5..000000000
--- a/client/src/app/account/account-routing.module.ts
+++ /dev/null
@@ -1,43 +0,0 @@
1import { NgModule } from '@angular/core'
2import { RouterModule, Routes } from '@angular/router'
3
4import { MetaGuard } from '@ngx-meta/core'
5
6import { LoginGuard } from '../core'
7import { AccountComponent } from './account.component'
8import { AccountSettingsComponent } from './account-settings/account-settings.component'
9import { AccountVideosComponent } from './account-videos/account-videos.component'
10
11const accountRoutes: Routes = [
12 {
13 path: 'account',
14 component: AccountComponent,
15 canActivateChild: [ MetaGuard, LoginGuard ],
16 children: [
17 {
18 path: 'settings',
19 component: AccountSettingsComponent,
20 data: {
21 meta: {
22 title: 'Account settings'
23 }
24 }
25 },
26 {
27 path: 'videos',
28 component: AccountVideosComponent,
29 data: {
30 meta: {
31 title: 'Account videos'
32 }
33 }
34 }
35 ]
36 }
37]
38
39@NgModule({
40 imports: [ RouterModule.forChild(accountRoutes) ],
41 exports: [ RouterModule ]
42})
43export class AccountRoutingModule {}