1
0
mirror of https://github.com/bitwarden/directory-connector synced 2025-12-05 23:53:21 +00:00

[SSO] New user provision flow jslib update (5e0a2d1 -> d84d6da) (#70)

* Updated import/constructor

* Update jslib (5e0a2d1 -> d84d6da)
This commit is contained in:
Vincent Salucci
2020-10-14 08:59:40 -05:00
committed by GitHub
parent 38758caac4
commit 955711714d
2 changed files with 7 additions and 4 deletions

2
jslib

Submodule jslib updated: 5cb3e9c965...d84d6da7f7

View File

@@ -5,7 +5,10 @@ import {
ViewContainerRef,
} from '@angular/core';
import { Router } from '@angular/router';
import {
ActivatedRoute,
Router,
} from '@angular/router';
import { TwoFactorOptionsComponent } from './two-factor-options.component';
@@ -33,9 +36,9 @@ export class TwoFactorComponent extends BaseTwoFactorComponent {
i18nService: I18nService, apiService: ApiService,
platformUtilsService: PlatformUtilsService, environmentService: EnvironmentService,
private componentFactoryResolver: ComponentFactoryResolver, stateService: StateService,
storageService: StorageService) {
storageService: StorageService, route: ActivatedRoute) {
super(authService, router, i18nService, apiService, platformUtilsService, window, environmentService,
stateService, storageService);
stateService, storageService, route);
}
async ngOnInit() {