mirror of
https://github.com/bitwarden/web
synced 2025-12-13 06:43:31 +00:00
register state service
This commit is contained in:
2
jslib
2
jslib
Submodule jslib updated: a949f499ac...9bc7459eac
@@ -11,6 +11,7 @@ import { ApiService } from 'jslib/abstractions/api.service';
|
|||||||
import { AuthService } from 'jslib/abstractions/auth.service';
|
import { AuthService } from 'jslib/abstractions/auth.service';
|
||||||
import { CryptoService } from 'jslib/abstractions/crypto.service';
|
import { CryptoService } from 'jslib/abstractions/crypto.service';
|
||||||
import { I18nService } from 'jslib/abstractions/i18n.service';
|
import { I18nService } from 'jslib/abstractions/i18n.service';
|
||||||
|
import { StateService } from 'jslib/abstractions/state.service';
|
||||||
|
|
||||||
import { RegisterComponent as BaseRegisterComponent } from 'jslib/angular/components/register.component';
|
import { RegisterComponent as BaseRegisterComponent } from 'jslib/angular/components/register.component';
|
||||||
|
|
||||||
@@ -22,8 +23,9 @@ export class RegisterComponent extends BaseRegisterComponent {
|
|||||||
constructor(authService: AuthService, router: Router,
|
constructor(authService: AuthService, router: Router,
|
||||||
analytics: Angulartics2, toasterService: ToasterService,
|
analytics: Angulartics2, toasterService: ToasterService,
|
||||||
i18nService: I18nService, cryptoService: CryptoService,
|
i18nService: I18nService, cryptoService: CryptoService,
|
||||||
apiService: ApiService, private route: ActivatedRoute) {
|
apiService: ApiService, private route: ActivatedRoute,
|
||||||
super(authService, router, analytics, toasterService, i18nService, cryptoService, apiService);
|
stateService: StateService) {
|
||||||
|
super(authService, router, analytics, toasterService, i18nService, cryptoService, apiService, stateService);
|
||||||
}
|
}
|
||||||
|
|
||||||
ngOnInit() {
|
ngOnInit() {
|
||||||
|
|||||||
Reference in New Issue
Block a user