1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 16:53:34 +00:00

[SM-389] Event log for service account (#4679)

This commit is contained in:
Oscar Hinton
2023-02-24 16:44:24 +01:00
committed by GitHub
parent 76d6586ff8
commit a643074709
10 changed files with 65 additions and 9 deletions

View File

@@ -14,6 +14,7 @@ export class EventView {
type: EventType;
installationId: string;
systemUser: EventSystemUser;
serviceAccountId: string;
constructor(data: Required<EventView>) {
this.message = data.message;
@@ -28,5 +29,6 @@ export class EventView {
this.type = data.type;
this.installationId = data.installationId;
this.systemUser = data.systemUser;
this.serviceAccountId = data.serviceAccountId;
}
}