]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+signup/+register/register.module.ts
Retrieve user by id instead of username
[github/Chocobozzz/PeerTube.git] / client / src / app / +signup / +register / register.module.ts
CommitLineData
67ed6552 1import { CdkStepperModule } from '@angular/cdk/stepper'
b247a132 2import { NgModule } from '@angular/core'
67ed6552
C
3import { SignupSharedModule } from '@app/+signup/shared/signup-shared.module'
4import { SharedInstanceModule } from '@app/shared/shared-instance'
67ed6552 5import { CustomStepperComponent } from './custom-stepper.component'
b247a132 6import { RegisterRoutingModule } from './register-routing.module'
b247a132 7import { RegisterStepChannelComponent } from './register-step-channel.component'
40360c17 8import { RegisterStepTermsComponent } from './register-step-terms.component'
b247a132 9import { RegisterStepUserComponent } from './register-step-user.component'
67ed6552 10import { RegisterComponent } from './register.component'
b247a132
C
11
12@NgModule({
13 imports: [
14 RegisterRoutingModule,
67ed6552 15
b247a132 16 CdkStepperModule,
67ed6552 17
421d935d 18 SignupSharedModule,
67ed6552
C
19
20 SharedInstanceModule
b247a132
C
21 ],
22
23 declarations: [
24 RegisterComponent,
25 CustomStepperComponent,
26 RegisterStepChannelComponent,
40360c17 27 RegisterStepTermsComponent,
b247a132
C
28 RegisterStepUserComponent
29 ],
30
31 exports: [
32 RegisterComponent
33 ],
34
35 providers: [
36 ]
37})
38export class RegisterModule { }