]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/+signup/+verify-account/verify-account-routing.module.ts
Bumped to version v5.2.1
[github/Chocobozzz/PeerTube.git] / client / src / app / +signup / +verify-account / verify-account-routing.module.ts
index c9ac67e4c5c7e18a8264661cf64c4d424df16141..d53a5ed780599a652299dc84eb6e170c0d1320e1 100644 (file)
@@ -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: $localize`Verify account email`
+            title: $localize`Verify account via email`
           }
         }
       },
@@ -23,7 +21,7 @@ const verifyAccountRoutes: Routes = [
         component: VerifyAccountAskSendEmailComponent,
         data: {
           meta: {
-            title: $localize`Verify account ask send email`
+            title: $localize`Ask to send an email to verify your account`
           }
         }
       }