diff options
author | Chocobozzz <me@florianbigard.com> | 2020-06-23 14:10:17 +0200 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2020-06-23 16:00:49 +0200 |
commit | 67ed6552b831df66713bac9e672738796128d33f (patch) | |
tree | 59c97d41e0b49d75a90aa3de987968ab9b1ff447 /client/src/app/+signup/shared | |
parent | 0c4bacbff53bc732f5a2677d62a6ead7752e2405 (diff) | |
download | PeerTube-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.ts | 14 |
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 @@ | |||
1 | import { NgModule } from '@angular/core' | 1 | import { NgModule } from '@angular/core' |
2 | import { SignupSuccessComponent } from '../shared/signup-success.component' | 2 | import { SharedMainModule } from '@app/shared/shared-main' |
3 | import { SharedModule } from '@app/shared' | 3 | import { SignupSuccessComponent } from './signup-success.component' |
4 | import { SharedFormModule } from '@app/shared/shared-forms' | ||
5 | import { 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 | ||