]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/+home/home-routing.module.ts
Merge branch 'release/4.3.0' into develop
[github/Chocobozzz/PeerTube.git] / client / src / app / +home / home-routing.module.ts
index 1eaee4449be43f1bda8ddff588734df1e7abb8f7..bedf26be0f0b6412ab95e768a065a07a1eff2a78 100644 (file)
@@ -1,13 +1,16 @@
 import { NgModule } from '@angular/core'
 import { RouterModule, Routes } from '@angular/router'
-import { MetaGuard } from '@ngx-meta/core'
 import { HomeComponent } from './home.component'
 
 const homeRoutes: Routes = [
   {
     path: '',
     component: HomeComponent,
-    canActivateChild: [ MetaGuard ]
+    data: {
+      meta: {
+        title: $localize`Homepage`
+      }
+    }
   }
 ]