]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+reset-password/reset-password-routing.module.ts
Add ability to filter out public videos from admin
[github/Chocobozzz/PeerTube.git] / client / src / app / +reset-password / reset-password-routing.module.ts
1 import { NgModule } from '@angular/core'
2 import { RouterModule, Routes } from '@angular/router'
3 import { ResetPasswordComponent } from './reset-password.component'
4
5 const resetPasswordRoutes: Routes = [
6 {
7 path: '',
8 component: ResetPasswordComponent,
9 data: {
10 meta: {
11 title: $localize`Reset password`
12 }
13 }
14 }
15 ]
16
17 @NgModule({
18 imports: [ RouterModule.forChild(resetPasswordRoutes) ],
19 exports: [ RouterModule ]
20 })
21 export class ResetPasswordRoutingModule {}