diff options
author | Chocobozzz <me@florianbigard.com> | 2022-01-21 11:03:25 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2022-01-21 11:03:25 +0100 |
commit | d92d070c91ee73657f2e3a5756954ef63fdba306 (patch) | |
tree | 7948b03e025b8878d64c45b5a969871667dab5f1 /client/src/app/+signup/shared | |
parent | cce70ae5ca3a2bfd893a7a8c457086151470de70 (diff) | |
download | PeerTube-d92d070c91ee73657f2e3a5756954ef63fdba306.tar.gz PeerTube-d92d070c91ee73657f2e3a5756954ef63fdba306.tar.zst PeerTube-d92d070c91ee73657f2e3a5756954ef63fdba306.zip |
Split user service
Diffstat (limited to 'client/src/app/+signup/shared')
-rw-r--r-- | client/src/app/+signup/shared/shared-signup.module.ts (renamed from client/src/app/+signup/shared/signup-shared.module.ts) | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/client/src/app/+signup/shared/signup-shared.module.ts b/client/src/app/+signup/shared/shared-signup.module.ts index 56b0b3bae..f8b224c71 100644 --- a/client/src/app/+signup/shared/signup-shared.module.ts +++ b/client/src/app/+signup/shared/shared-signup.module.ts | |||
@@ -1,14 +1,16 @@ | |||
1 | import { NgModule } from '@angular/core' | 1 | import { NgModule } from '@angular/core' |
2 | import { SharedMainModule } from '@app/shared/shared-main' | ||
3 | import { SignupSuccessComponent } from './signup-success.component' | ||
4 | import { SharedFormModule } from '@app/shared/shared-forms' | 2 | import { SharedFormModule } from '@app/shared/shared-forms' |
5 | import { SharedGlobalIconModule } from '@app/shared/shared-icons' | 3 | import { SharedGlobalIconModule } from '@app/shared/shared-icons' |
4 | import { SharedMainModule } from '@app/shared/shared-main' | ||
5 | import { SharedUsersModule } from '@app/shared/shared-users' | ||
6 | import { SignupSuccessComponent } from './signup-success.component' | ||
6 | 7 | ||
7 | @NgModule({ | 8 | @NgModule({ |
8 | imports: [ | 9 | imports: [ |
9 | SharedMainModule, | 10 | SharedMainModule, |
10 | SharedFormModule, | 11 | SharedFormModule, |
11 | SharedGlobalIconModule | 12 | SharedGlobalIconModule, |
13 | SharedUsersModule | ||
12 | ], | 14 | ], |
13 | 15 | ||
14 | declarations: [ | 16 | declarations: [ |
@@ -26,4 +28,4 @@ import { SharedGlobalIconModule } from '@app/shared/shared-icons' | |||
26 | providers: [ | 28 | providers: [ |
27 | ] | 29 | ] |
28 | }) | 30 | }) |
29 | export class SignupSharedModule { } | 31 | export class SharedSignupModule { } |