]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+reset-password/reset-password-routing.module.ts
Handle input error in custom input text
[github/Chocobozzz/PeerTube.git] / client / src / app / +reset-password / reset-password-routing.module.ts
CommitLineData
ecb4e35f
C
1import { NgModule } from '@angular/core'
2import { RouterModule, Routes } from '@angular/router'
ecb4e35f
C
3import { ResetPasswordComponent } from './reset-password.component'
4
5const resetPasswordRoutes: Routes = [
6 {
1942f11d 7 path: '',
ecb4e35f 8 component: ResetPasswordComponent,
ecb4e35f
C
9 data: {
10 meta: {
0f01a8ba 11 title: $localize`Reset password`
ecb4e35f
C
12 }
13 }
14 }
15]
16
17@NgModule({
18 imports: [ RouterModule.forChild(resetPasswordRoutes) ],
19 exports: [ RouterModule ]
20})
21export class ResetPasswordRoutingModule {}