diff --git a/src/Core/Services/Implementations/EventService.cs b/src/Core/Services/Implementations/EventService.cs index 033401211e..547a3f2f65 100644 --- a/src/Core/Services/Implementations/EventService.cs +++ b/src/Core/Services/Implementations/EventService.cs @@ -36,6 +36,7 @@ namespace Bit.Core.Services new EventMessage { UserId = userId, + ActingUserId = userId, Type = type, Date = now } @@ -48,6 +49,7 @@ namespace Bit.Core.Services { OrganizationId = o.Id, UserId = userId, + ActingUserId = userId, Type = type, Date = DateTime.UtcNow }); @@ -60,6 +62,7 @@ namespace Bit.Core.Services { OrganizationId = o.OrganizationId, UserId = userId, + ActingUserId = userId, Type = type, Date = DateTime.UtcNow });