diff options
author | Chocobozzz <me@florianbigard.com> | 2019-05-29 14:39:49 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2019-05-29 14:39:49 +0200 |
commit | b247a132709eb212fef4f77c4912dc0ec108f36b (patch) | |
tree | b2700e6ed55e00cd213c44e8afdeea4c327ae904 /client/src/app/signup/signup.module.ts | |
parent | 1d5342abc43df02cf0bd69b1e865c0f179182eef (diff) | |
download | PeerTube-b247a132709eb212fef4f77c4912dc0ec108f36b.tar.gz PeerTube-b247a132709eb212fef4f77c4912dc0ec108f36b.tar.zst PeerTube-b247a132709eb212fef4f77c4912dc0ec108f36b.zip |
Add success icon on registration
Diffstat (limited to 'client/src/app/signup/signup.module.ts')
-rw-r--r-- | client/src/app/signup/signup.module.ts | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/client/src/app/signup/signup.module.ts b/client/src/app/signup/signup.module.ts deleted file mode 100644 index fccaf7ce1..000000000 --- a/client/src/app/signup/signup.module.ts +++ /dev/null | |||
@@ -1,33 +0,0 @@ | |||
1 | import { NgModule } from '@angular/core' | ||
2 | import { SignupRoutingModule } from './signup-routing.module' | ||
3 | import { SignupComponent } from './signup.component' | ||
4 | import { SharedModule } from '../shared' | ||
5 | import { CdkStepperModule } from '@angular/cdk/stepper' | ||
6 | import { SignupStepChannelComponent } from '@app/signup/signup-step-channel.component' | ||
7 | import { SignupStepUserComponent } from '@app/signup/signup-step-user.component' | ||
8 | import { CustomStepperComponent } from '@app/signup/custom-stepper.component' | ||
9 | import { SuccessComponent } from '@app/signup/success.component' | ||
10 | |||
11 | @NgModule({ | ||
12 | imports: [ | ||
13 | SignupRoutingModule, | ||
14 | SharedModule, | ||
15 | CdkStepperModule | ||
16 | ], | ||
17 | |||
18 | declarations: [ | ||
19 | SignupComponent, | ||
20 | CustomStepperComponent, | ||
21 | SuccessComponent, | ||
22 | SignupStepChannelComponent, | ||
23 | SignupStepUserComponent | ||
24 | ], | ||
25 | |||
26 | exports: [ | ||
27 | SignupComponent | ||
28 | ], | ||
29 | |||
30 | providers: [ | ||
31 | ] | ||
32 | }) | ||
33 | export class SignupModule { } | ||