Allow iframes to open links
[oweals/peertube.git] / client / src / app / +page-not-found / page-not-found-routing.module.ts
1 import { NgModule } from '@angular/core'
2 import { RouterModule, Routes } from '@angular/router'
3 import { PageNotFoundComponent } from './page-not-found.component'
4 import { MetaGuard } from '@ngx-meta/core'
5
6 const pageNotFoundRoutes: Routes = [
7   {
8     path: '',
9     component: PageNotFoundComponent,
10     canActivate: [ MetaGuard ],
11     data: {
12       meta: {
13         title: 'Not found'
14       }
15     }
16   }
17 ]
18
19 @NgModule({
20   imports: [ RouterModule.forChild(pageNotFoundRoutes) ],
21   exports: [ RouterModule ]
22 })
23 export class PageNotFoundRoutingModule {}