aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+reset-password/reset-password-routing.module.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/+reset-password/reset-password-routing.module.ts')
-rw-r--r--client/src/app/+reset-password/reset-password-routing.module.ts23
1 files changed, 23 insertions, 0 deletions
diff --git a/client/src/app/+reset-password/reset-password-routing.module.ts b/client/src/app/+reset-password/reset-password-routing.module.ts
new file mode 100644
index 000000000..31bc08709
--- /dev/null
+++ b/client/src/app/+reset-password/reset-password-routing.module.ts
@@ -0,0 +1,23 @@
1import { NgModule } from '@angular/core'
2import { RouterModule, Routes } from '@angular/router'
3import { MetaGuard } from '@ngx-meta/core'
4import { ResetPasswordComponent } from './reset-password.component'
5
6const resetPasswordRoutes: Routes = [
7 {
8 path: '',
9 component: ResetPasswordComponent,
10 canActivate: [ MetaGuard ],
11 data: {
12 meta: {
13 title: 'Reset password'
14 }
15 }
16 }
17]
18
19@NgModule({
20 imports: [ RouterModule.forChild(resetPasswordRoutes) ],
21 exports: [ RouterModule ]
22})
23export class ResetPasswordRoutingModule {}