X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2F%2Bsignup%2F%2Bverify-account%2Fverify-account-routing.module.ts;h=d53a5ed780599a652299dc84eb6e170c0d1320e1;hb=HEAD;hp=16d5fe0d0a1a33db2139a39f79da0c5ddd300fd3;hpb=b247a132709eb212fef4f77c4912dc0ec108f36b;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/+signup/+verify-account/verify-account-routing.module.ts b/client/src/app/+signup/+verify-account/verify-account-routing.module.ts index 16d5fe0d0..d53a5ed78 100644 --- a/client/src/app/+signup/+verify-account/verify-account-routing.module.ts +++ b/client/src/app/+signup/+verify-account/verify-account-routing.module.ts @@ -1,20 +1,18 @@ import { NgModule } from '@angular/core' import { RouterModule, Routes } from '@angular/router' -import { MetaGuard } from '@ngx-meta/core' -import { VerifyAccountEmailComponent } from './verify-account-email/verify-account-email.component' import { VerifyAccountAskSendEmailComponent } from './verify-account-ask-send-email/verify-account-ask-send-email.component' +import { VerifyAccountEmailComponent } from './verify-account-email/verify-account-email.component' const verifyAccountRoutes: Routes = [ { path: '', - canActivateChild: [ MetaGuard ], children: [ { path: 'email', component: VerifyAccountEmailComponent, data: { meta: { - title: 'Verify account email' + title: $localize`Verify account via email` } } }, @@ -23,7 +21,7 @@ const verifyAccountRoutes: Routes = [ component: VerifyAccountAskSendEmailComponent, data: { meta: { - title: 'Verify account ask send email' + title: $localize`Ask to send an email to verify your account` } } }