1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-02 16:42:50 -05:00

org user management apis

This commit is contained in:
Kyle Spearrin
2017-03-04 21:28:41 -05:00
parent 2f41f260ec
commit 5ac2113cac
20 changed files with 389 additions and 13 deletions

View File

@ -3,8 +3,7 @@
public enum OrganizationUserStatusType : byte
{
Invited = 0,
Pending = 1,
Accepted = 2,
Confirmed = 3
Accepted = 1,
Confirmed = 2
}
}

View File

@ -4,6 +4,6 @@
{
Owner = 0,
Admin = 1,
Regular = 2
User = 2
}
}