aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+signup/shared
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2020-06-23 14:10:17 +0200
committerChocobozzz <chocobozzz@cpy.re>2020-06-23 16:00:49 +0200
commit67ed6552b831df66713bac9e672738796128d33f (patch)
tree59c97d41e0b49d75a90aa3de987968ab9b1ff447 /client/src/app/+signup/shared
parent0c4bacbff53bc732f5a2677d62a6ead7752e2405 (diff)
downloadPeerTube-67ed6552b831df66713bac9e672738796128d33f.tar.gz
PeerTube-67ed6552b831df66713bac9e672738796128d33f.tar.zst
PeerTube-67ed6552b831df66713bac9e672738796128d33f.zip
Reorganize client shared modules
Diffstat (limited to 'client/src/app/+signup/shared')
-rw-r--r--client/src/app/+signup/shared/signup-shared.module.ts14
1 files changed, 11 insertions, 3 deletions
diff --git a/client/src/app/+signup/shared/signup-shared.module.ts b/client/src/app/+signup/shared/signup-shared.module.ts
index cd21fdef3..56b0b3bae 100644
--- a/client/src/app/+signup/shared/signup-shared.module.ts
+++ b/client/src/app/+signup/shared/signup-shared.module.ts
@@ -1,10 +1,14 @@
1import { NgModule } from '@angular/core' 1import { NgModule } from '@angular/core'
2import { SignupSuccessComponent } from '../shared/signup-success.component' 2import { SharedMainModule } from '@app/shared/shared-main'
3import { SharedModule } from '@app/shared' 3import { SignupSuccessComponent } from './signup-success.component'
4import { SharedFormModule } from '@app/shared/shared-forms'
5import { SharedGlobalIconModule } from '@app/shared/shared-icons'
4 6
5@NgModule({ 7@NgModule({
6 imports: [ 8 imports: [
7 SharedModule 9 SharedMainModule,
10 SharedFormModule,
11 SharedGlobalIconModule
8 ], 12 ],
9 13
10 declarations: [ 14 declarations: [
@@ -12,6 +16,10 @@ import { SharedModule } from '@app/shared'
12 ], 16 ],
13 17
14 exports: [ 18 exports: [
19 SharedMainModule,
20 SharedFormModule,
21 SharedGlobalIconModule,
22
15 SignupSuccessComponent 23 SignupSuccessComponent
16 ], 24 ],
17 25