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

Add InstallationId to event responses (#2007)

This commit is contained in:
Matt Gibson
2022-05-19 10:58:47 -04:00
committed by GitHub
parent e314537713
commit 60e36a8f0f
2 changed files with 8 additions and 0 deletions

View File

@ -30,6 +30,7 @@ namespace Bit.Api.Models.Response
Date = ev.Date;
DeviceType = ev.DeviceType;
IpAddress = ev.IpAddress;
InstallationId = ev.InstallationId;
}
public EventType Type { get; set; }
@ -44,6 +45,7 @@ namespace Bit.Api.Models.Response
public Guid? ProviderUserId { get; set; }
public Guid? ProviderOrganizationId { get; set; }
public Guid? ActingUserId { get; set; }
public Guid? InstallationId { get; set; }
public DateTime Date { get; set; }
public DeviceType? DeviceType { get; set; }
public string IpAddress { get; set; }