mirror of
https://github.com/bitwarden/server
synced 2025-12-12 22:33:45 +00:00
* 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
9 lines
130 B
C#
9 lines
130 B
C#
namespace Bit.Core.Enums;
|
|
|
|
public enum EventSystemUser : byte
|
|
{
|
|
SCIM = 1,
|
|
DomainVerification = 2,
|
|
PublicApi = 3,
|
|
}
|