aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+signup/+register/register-step-user.component.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/+signup/+register/register-step-user.component.ts')
-rw-r--r--client/src/app/+signup/+register/register-step-user.component.ts10
1 files changed, 4 insertions, 6 deletions
diff --git a/client/src/app/+signup/+register/register-step-user.component.ts b/client/src/app/+signup/+register/register-step-user.component.ts
index 6c96f20b4..3d9ab8b6b 100644
--- a/client/src/app/+signup/+register/register-step-user.component.ts
+++ b/client/src/app/+signup/+register/register-step-user.component.ts
@@ -1,10 +1,9 @@
1import { concat, of } from 'rxjs'
2import { pairwise } from 'rxjs/operators'
1import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core' 3import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core'
2import { AuthService } from '@app/core'
3import { FormReactive, UserService, UserValidatorsService } from '@app/shared'
4import { FormValidatorService } from '@app/shared/forms/form-validators/form-validator.service'
5import { FormGroup } from '@angular/forms' 4import { FormGroup } from '@angular/forms'
6import { pairwise } from 'rxjs/operators' 5import { UserService } from '@app/core'
7import { concat, of } from 'rxjs' 6import { FormReactive, FormValidatorService, UserValidatorsService } from '@app/shared/shared-forms'
8 7
9@Component({ 8@Component({
10 selector: 'my-register-step-user', 9 selector: 'my-register-step-user',
@@ -20,7 +19,6 @@ export class RegisterStepUserComponent extends FormReactive implements OnInit {
20 19
21 constructor ( 20 constructor (
22 protected formValidatorService: FormValidatorService, 21 protected formValidatorService: FormValidatorService,
23 private authService: AuthService,
24 private userService: UserService, 22 private userService: UserService,
25 private userValidatorsService: UserValidatorsService 23 private userValidatorsService: UserValidatorsService
26 ) { 24 ) {