1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 08:43:33 +00:00

cont. removing broadcast srv jslib refs

This commit is contained in:
Chad Scharf
2020-11-02 17:11:56 -05:00
parent 5ff545e541
commit 4a18a4eb93
4 changed files with 8 additions and 19 deletions

View File

@@ -22,8 +22,6 @@ import { SyncService } from 'jslib/abstractions/sync.service';
import { LoginComponent as BaseLoginComponent } from 'jslib/angular/components/login.component';
import { ModalComponent } from 'jslib/angular/components/modal.component';
import { BroadcasterService } from 'jslib/angular/services/broadcaster.service';
@Component({
selector: 'app-login',
templateUrl: 'login.component.html',
@@ -37,10 +35,9 @@ export class LoginComponent extends BaseLoginComponent {
syncService: SyncService, private componentFactoryResolver: ComponentFactoryResolver,
platformUtilsService: PlatformUtilsService, stateService: StateService,
environmentService: EnvironmentService, passwordGenerationService: PasswordGenerationService,
cryptoFunctionService: CryptoFunctionService, storageService: StorageService,
broadcasterService: BroadcasterService) {
cryptoFunctionService: CryptoFunctionService, storageService: StorageService) {
super(authService, router, platformUtilsService, i18nService, stateService, environmentService,
passwordGenerationService, cryptoFunctionService, broadcasterService, storageService);
passwordGenerationService, cryptoFunctionService, storageService);
super.onSuccessfulLogin = () => {
return syncService.fullSync(true);
};