mirror of
https://github.com/bitwarden/server
synced 2026-01-10 12:33:49 +00:00
[AC-1751] AC Team code ownership moves: OrganizationUser (part 1) (#3487)
* Move OrganizationUser domain to AC Team ownership * Namespaces will be updated in a separate commit
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
namespace Bit.Core.Enums;
|
||||
|
||||
public enum OrganizationUserStatusType : short
|
||||
{
|
||||
Invited = 0,
|
||||
Accepted = 1,
|
||||
Confirmed = 2,
|
||||
Revoked = -1,
|
||||
}
|
||||
10
src/Core/AdminConsole/Enums/OrganizationUserType.cs
Normal file
10
src/Core/AdminConsole/Enums/OrganizationUserType.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
namespace Bit.Core.Enums;
|
||||
|
||||
public enum OrganizationUserType : byte
|
||||
{
|
||||
Owner = 0,
|
||||
Admin = 1,
|
||||
User = 2,
|
||||
Manager = 3,
|
||||
Custom = 4,
|
||||
}
|
||||
Reference in New Issue
Block a user