1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-01 08:02:49 -05:00

[SM-1433] Update SM Event Logs (#4759)

* SM-1433: Fix bug using cipherId instead of secretId

* SM-1433: Add secretId and serviceAccountId
This commit is contained in:
Colton Hurst
2024-09-16 12:30:23 -04:00
committed by GitHub
parent 459f37a4c6
commit a19fc6a2b0
2 changed files with 13 additions and 1 deletions

View File

@ -211,7 +211,7 @@ public class EventTableEntity : IEvent
entities.Add(new EventTableEntity(e)
{
PartitionKey = pKey,
RowKey = $"SecretId={e.CipherId}__Date={dateKey}__Uniquifier={uniquifier}"
RowKey = $"SecretId={e.SecretId}__Date={dateKey}__Uniquifier={uniquifier}"
});
}