feat: verify email (CAS-66) #192

Merged
csimonis merged 7 commits from feat/verify-email into main 2025-05-15 09:05:30 +00:00
2 changed files with 6 additions and 3 deletions
Showing only changes of commit 2f21408e3d - Show all commits

View file

@ -14,7 +14,10 @@ export const routes: Routes = [
},
{
path: 'verify',
loadComponent: () => import('./feature/auth/verify-email/verify-email.component').then(m => m.VerifyEmailComponent),
loadComponent: () =>
import('./feature/auth/verify-email/verify-email.component').then(
(m) => m.VerifyEmailComponent
),
},
{
path: 'game/blackjack',

View file

@ -25,6 +25,6 @@ export class VerifyEmailComponent implements OnInit{
this.router.navigate([''], {
queryParams: { login: true },
});
})
});
}
}