]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/+reset-password/reset-password-routing.module.ts
Add ability to redirect users on external auth
[github/Chocobozzz/PeerTube.git] / client / src / app / +reset-password / reset-password-routing.module.ts
index 31bc08709b4b20195a8fef9f5c053cef50234939..3532cdbc136681edc810bd22afb6dff6827f28c1 100644 (file)
@@ -1,16 +1,14 @@
 import { NgModule } from '@angular/core'
 import { RouterModule, Routes } from '@angular/router'
-import { MetaGuard } from '@ngx-meta/core'
 import { ResetPasswordComponent } from './reset-password.component'
 
 const resetPasswordRoutes: Routes = [
   {
     path: '',
     component: ResetPasswordComponent,
-    canActivate: [ MetaGuard ],
     data: {
       meta: {
-        title: 'Reset password'
+        title: $localize`Reset password`
       }
     }
   }