1
0
mirror of https://github.com/bitwarden/server synced 2026-01-08 03:23:20 +00:00

[AC-1923] Add endpoint to create client organization (#3977)

* Add new endpoint for creating client organizations in consolidated billing

* Create empty org and then assign seats for code re-use

* Fixes made from debugging client side

* few more small fixes

* Vincent's feedback
This commit is contained in:
Alex Morask
2024-04-16 13:55:00 -04:00
committed by GitHub
parent 73e049f878
commit c4ba0dc2a5
36 changed files with 1462 additions and 441 deletions

View File

@@ -3,5 +3,6 @@
public enum OrganizationStatusType : byte
{
Pending = 0,
Created = 1
Created = 1,
Managed = 2,
}