]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/+page-not-found/page-not-found-routing.module.ts
refactor 404 page
[github/Chocobozzz/PeerTube.git] / client / src / app / +page-not-found / page-not-found-routing.module.ts
index 43f7d733715322e15e0c0566ab43c15eb84ece61..84f400bb624301b9aa3fbe892a44f8a3020a7f78 100644 (file)
@@ -1,11 +1,19 @@
 import { NgModule } from '@angular/core'
 import { RouterModule, Routes } from '@angular/router'
 import { PageNotFoundComponent } from './page-not-found.component'
+import { MenuGuards } from '@app/core'
 
 const pageNotFoundRoutes: Routes = [
   {
     path: '',
     component: PageNotFoundComponent,
+    canActivate: [ MenuGuards.close(true) ],
+    canDeactivate: [ MenuGuards.open(true) ],
+    data: {
+      meta: {
+        title: $localize`Not found`
+      }
+    }
   }
 ]