X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2F%2Breset-password%2Freset-password-routing.module.ts;h=3532cdbc136681edc810bd22afb6dff6827f28c1;hb=0bc53e20296de68288481e2375b297626087174b;hp=7f1ba2f68668fb670efe08d1fb460680b933d453;hpb=1e7eb457eda647b4fa22a0ae8e59c0a618f662f8;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/+reset-password/reset-password-routing.module.ts b/client/src/app/+reset-password/reset-password-routing.module.ts index 7f1ba2f68..3532cdbc1 100644 --- a/client/src/app/+reset-password/reset-password-routing.module.ts +++ b/client/src/app/+reset-password/reset-password-routing.module.ts @@ -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` } } }