We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1778e12 + cc130ea commit ac0d8a4Copy full SHA for ac0d8a4
1 file changed
frontend/src/app/app-routing.module.ts
@@ -1,5 +1,6 @@
1
import { NgModule } from '@angular/core';
2
import { RouterModule, Routes } from '@angular/router';
3
+import { provideZxvbnServiceForPSM } from 'angular-password-strength-meter/zxcvbn';
4
import { AuthGuard } from './auth.guard';
5
import { configurationGuard } from './guards/configuration.guard';
6
import { setupGuard } from './guards/setup.guard';
@@ -18,6 +19,7 @@ const routes: Routes = [
18
19
path: 'setup',
20
loadComponent: () => import('./components/setup/setup.component').then((m) => m.SetupComponent),
21
canActivate: [setupGuard],
22
+ providers: [provideZxvbnServiceForPSM()],
23
title: 'Setup | Rocketadmin',
24
},
25
{
0 commit comments