aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+reset-password/reset-password-routing.module.ts
blob: 7f1ba2f68668fb670efe08d1fb460680b933d453 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { NgModule } from '@angular/core'
import { RouterModule, Routes } from '@angular/router'
import { MetaGuard } from '@ngx-meta/core'
import { ResetPasswordComponent } from './reset-password.component'

const resetPasswordRoutes: Routes = [
  {
    path: '',
    component: ResetPasswordComponent,
    canActivate: [ MetaGuard ],
    data: {
      meta: {
        title: `Reset password`
      }
    }
  }
]

@NgModule({
  imports: [ RouterModule.forChild(resetPasswordRoutes) ],
  exports: [ RouterModule ]
})
export class ResetPasswordRoutingModule {}