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

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

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