diff options
author | Chocobozzz <me@florianbigard.com> | 2018-06-27 14:21:03 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-06-27 14:59:09 +0200 |
commit | 78f912ed5733028ec2bf10c06c19f75b07943be2 (patch) | |
tree | 4bf9692230deabc4e050e5a7de126b38901969e9 /client/src/app/about/about-routing.module.ts | |
parent | 61b909b9bf849516f30dab2bf5977acfbbddc5c6 (diff) | |
download | PeerTube-78f912ed5733028ec2bf10c06c19f75b07943be2.tar.gz PeerTube-78f912ed5733028ec2bf10c06c19f75b07943be2.tar.zst PeerTube-78f912ed5733028ec2bf10c06c19f75b07943be2.zip |
Improve P2P & Privacy section
Diffstat (limited to 'client/src/app/about/about-routing.module.ts')
-rw-r--r-- | client/src/app/about/about-routing.module.ts | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/client/src/app/about/about-routing.module.ts b/client/src/app/about/about-routing.module.ts deleted file mode 100644 index 11a650c80..000000000 --- a/client/src/app/about/about-routing.module.ts +++ /dev/null | |||
@@ -1,23 +0,0 @@ | |||
1 | import { NgModule } from '@angular/core' | ||
2 | import { RouterModule, Routes } from '@angular/router' | ||
3 | import { MetaGuard } from '@ngx-meta/core' | ||
4 | import { AboutComponent } from './about.component' | ||
5 | |||
6 | const aboutRoutes: Routes = [ | ||
7 | { | ||
8 | path: 'about', | ||
9 | component: AboutComponent, | ||
10 | canActivate: [ MetaGuard ], | ||
11 | data: { | ||
12 | meta: { | ||
13 | title: 'About' | ||
14 | } | ||
15 | } | ||
16 | } | ||
17 | ] | ||
18 | |||
19 | @NgModule({ | ||
20 | imports: [ RouterModule.forChild(aboutRoutes) ], | ||
21 | exports: [ RouterModule ] | ||
22 | }) | ||
23 | export class AboutRoutingModule {} | ||