aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+reset-password/reset-password.module.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2020-06-23 14:49:20 +0200
committerChocobozzz <chocobozzz@cpy.re>2020-06-23 16:00:49 +0200
commit1942f11d5ee6926ad93dc1b79fae18325ba5de18 (patch)
tree3f2a3cd9466a56c419d197ac832a3e9cbc86bec4 /client/src/app/+reset-password/reset-password.module.ts
parent67ed6552b831df66713bac9e672738796128d33f (diff)
downloadPeerTube-1942f11d5ee6926ad93dc1b79fae18325ba5de18.tar.gz
PeerTube-1942f11d5ee6926ad93dc1b79fae18325ba5de18.tar.zst
PeerTube-1942f11d5ee6926ad93dc1b79fae18325ba5de18.zip
Lazy load all routes
Diffstat (limited to 'client/src/app/+reset-password/reset-password.module.ts')
-rw-r--r--client/src/app/+reset-password/reset-password.module.ts26
1 files changed, 26 insertions, 0 deletions
diff --git a/client/src/app/+reset-password/reset-password.module.ts b/client/src/app/+reset-password/reset-password.module.ts
new file mode 100644
index 000000000..c77f1c4b0
--- /dev/null
+++ b/client/src/app/+reset-password/reset-password.module.ts
@@ -0,0 +1,26 @@
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 { }