mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-23 11:56:00 +01:00
register state service
This commit is contained in:
parent
73f19b4926
commit
216f2eddb6
2
jslib
2
jslib
@ -1 +1 @@
|
||||
Subproject commit a949f499acb28ddb1ce7197fd35c0d02df957618
|
||||
Subproject commit 9bc7459eacb55a234da8dd8aa71c059a4cd3e1ee
|
@ -8,6 +8,7 @@ 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';
|
||||
import { StateService } from 'jslib/abstractions/state.service';
|
||||
|
||||
import { RegisterComponent as BaseRegisterComponent } from 'jslib/angular/components/register.component';
|
||||
|
||||
@ -19,7 +20,7 @@ export class RegisterComponent extends BaseRegisterComponent {
|
||||
constructor(authService: AuthService, router: Router,
|
||||
analytics: Angulartics2, toasterService: ToasterService,
|
||||
i18nService: I18nService, cryptoService: CryptoService,
|
||||
apiService: ApiService) {
|
||||
super(authService, router, analytics, toasterService, i18nService, cryptoService, apiService);
|
||||
apiService: ApiService, stateService: StateService) {
|
||||
super(authService, router, analytics, toasterService, i18nService, cryptoService, apiService, stateService);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user