2018-02-08 16:37:54 +01:00
|
|
|
import { Component } from '@angular/core';
|
2018-01-31 20:19:21 +01:00
|
|
|
import { Router } from '@angular/router';
|
|
|
|
|
|
|
|
import { ApiService } from 'jslib/abstractions/api.service';
|
|
|
|
import { AuthService } from 'jslib/abstractions/auth.service';
|
|
|
|
import { CryptoService } from 'jslib/abstractions/crypto.service';
|
|
|
|
import { I18nService } from 'jslib/abstractions/i18n.service';
|
2018-11-15 21:13:47 +01:00
|
|
|
import { PasswordGenerationService } from 'jslib/abstractions/passwordGeneration.service';
|
2018-10-02 15:22:40 +02:00
|
|
|
import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
|
2018-07-13 17:07:49 +02:00
|
|
|
import { StateService } from 'jslib/abstractions/state.service';
|
2018-01-31 20:19:21 +01:00
|
|
|
|
2018-04-04 15:47:49 +02:00
|
|
|
import { RegisterComponent as BaseRegisterComponent } from 'jslib/angular/components/register.component';
|
|
|
|
|
2018-01-31 20:19:21 +01:00
|
|
|
@Component({
|
|
|
|
selector: 'app-register',
|
2018-04-06 18:25:22 +02:00
|
|
|
templateUrl: 'register.component.html',
|
2018-01-31 20:19:21 +01:00
|
|
|
})
|
2018-04-04 15:47:49 +02:00
|
|
|
export class RegisterComponent extends BaseRegisterComponent {
|
|
|
|
constructor(authService: AuthService, router: Router,
|
|
|
|
i18nService: I18nService, cryptoService: CryptoService,
|
2018-10-02 15:22:40 +02:00
|
|
|
apiService: ApiService, stateService: StateService,
|
2018-11-15 21:13:47 +01:00
|
|
|
platformUtilsService: PlatformUtilsService, passwordGenerationService: PasswordGenerationService) {
|
|
|
|
super(authService, router, i18nService, cryptoService, apiService, stateService, platformUtilsService,
|
|
|
|
passwordGenerationService);
|
|
|
|
}
|
2018-01-31 20:19:21 +01:00
|
|
|
}
|