mirror of
https://github.com/bitwarden/server
synced 2025-12-25 04:33:26 +00:00
* Revoke managed user on 2FA removal if enforced by organization policy * Rename TwoFactorDisabling to TwoFactorDisabled in EventSystemUser enum
11 lines
174 B
C#
11 lines
174 B
C#
namespace Bit.Core.Enums;
|
|
|
|
public enum EventSystemUser : byte
|
|
{
|
|
Unknown = 0,
|
|
SCIM = 1,
|
|
DomainVerification = 2,
|
|
PublicApi = 3,
|
|
TwoFactorDisabled = 4,
|
|
}
|