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=decbd0b63bf14b55c265b0faee18521e4b0e1e76;hp=31bc08709b4b20195a8fef9f5c053cef50234939;hpb=1942f11d5ee6926ad93dc1b79fae18325ba5de18;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 31bc08709..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` } } }