From 1bbdafbe7a88be7487788c419b30aa6b9dc3f206 Mon Sep 17 00:00:00 2001 From: Jared Snider <116684653+JaredSnider-Bitwarden@users.noreply.github.com> Date: Thu, 16 Feb 2023 16:26:44 -0500 Subject: [PATCH] Updating Org Domain events to match existing pattern of incrementing event type enum by 100 to group new types of events. (#2710) --- src/Core/Enums/EventType.cs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/Core/Enums/EventType.cs b/src/Core/Enums/EventType.cs index da3b64fdb..77e62ed3a 100644 --- a/src/Core/Enums/EventType.cs +++ b/src/Core/Enums/EventType.cs @@ -1,5 +1,6 @@ namespace Bit.Core.Enums; +// Increment by 100 for each new set of events public enum EventType : int { User_LoggedIn = 1000, @@ -76,8 +77,8 @@ public enum EventType : int ProviderOrganization_Removed = 1902, ProviderOrganization_VaultAccessed = 1903, - OrganizationDomain_Added = 1904, - OrganizationDomain_Removed = 1905, - OrganizationDomain_Verified = 1906, - OrganizationDomain_NotVerified = 1907 + OrganizationDomain_Added = 2000, + OrganizationDomain_Removed = 2001, + OrganizationDomain_Verified = 2002, + OrganizationDomain_NotVerified = 2003 }