mirror of
https://github.com/bitwarden/server.git
synced 2025-07-19 00:21:35 -05:00
Log events from the import organization flow (#4632)
* Log events from the import organization flow * Use an interface for the `OrganizationUser` object used to log events * Log import events as being from the public api if they are * Add logging for created groups * Log proper group ids * Fix tests * Also log update events for groups * Remove private API `import` endpoint * Make `eventSystemUser` non-nullable for `ImportAsync` * Fix tests * Delete `ImportOrganizationUsersRequestModel` * Fix tests
This commit is contained in:
8
src/Core/AdminConsole/Interfaces/IOrganizationUser.cs
Normal file
8
src/Core/AdminConsole/Interfaces/IOrganizationUser.cs
Normal file
@ -0,0 +1,8 @@
|
||||
namespace Bit.Core.AdminConsole.Interfaces;
|
||||
|
||||
public interface IOrganizationUser
|
||||
{
|
||||
public Guid Id { get; set; }
|
||||
public Guid OrganizationId { get; set; }
|
||||
public Guid? UserId { get; set; }
|
||||
}
|
Reference in New Issue
Block a user