]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/src/app/+reset-password/reset-password.module.ts
Add ability to filter out public videos from admin
[github/Chocobozzz/PeerTube.git] / client / src / app / +reset-password / reset-password.module.ts
... / ...
CommitLineData
1import { NgModule } from '@angular/core'
2import { SharedFormModule } from '@app/shared/shared-forms'
3import { SharedMainModule } from '@app/shared/shared-main'
4import { ResetPasswordRoutingModule } from './reset-password-routing.module'
5import { ResetPasswordComponent } from './reset-password.component'
6
7@NgModule({
8 imports: [
9 ResetPasswordRoutingModule,
10
11 SharedMainModule,
12 SharedFormModule
13 ],
14
15 declarations: [
16 ResetPasswordComponent
17 ],
18
19 exports: [
20 ResetPasswordComponent
21 ],
22
23 providers: [
24 ]
25})
26export class ResetPasswordModule { }