1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-11 05:53:42 +00:00

Replaced uses of messaging with service.

This commit is contained in:
Todd Martin
2026-01-11 15:16:50 -05:00
parent 73dfb75be6
commit 6f5b160b25
15 changed files with 60 additions and 56 deletions

View File

@@ -25,7 +25,6 @@ import { assertTruthy, assertNonNullish } from "@bitwarden/common/auth/utils";
import { InternalMasterPasswordServiceAbstraction } from "@bitwarden/common/key-management/master-password/abstractions/master-password.service.abstraction";
import { I18nService } from "@bitwarden/common/platform/abstractions/i18n.service";
import { LogService } from "@bitwarden/common/platform/abstractions/log.service";
import { MessagingService } from "@bitwarden/common/platform/abstractions/messaging.service";
import { ValidationService } from "@bitwarden/common/platform/abstractions/validation.service";
import { SyncService } from "@bitwarden/common/platform/sync";
import { UserId } from "@bitwarden/common/types/guid";
@@ -76,7 +75,6 @@ export class SetInitialPasswordComponent implements OnInit {
private logoutService: LogoutService,
private logService: LogService,
private masterPasswordService: InternalMasterPasswordServiceAbstraction,
private messagingService: MessagingService,
private organizationApiService: OrganizationApiServiceAbstraction,
private policyApiService: PolicyApiServiceAbstraction,
private policyService: PolicyService,
@@ -317,7 +315,7 @@ export class SetInitialPasswordComponent implements OnInit {
});
if (confirmed) {
this.messagingService.send("logout");
await this.logoutService.logout(this.userId, "userInitiated");
}
}
}