1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-20 02:03:39 +00:00

add account profile api

This commit is contained in:
Kyle Spearrin
2018-05-03 12:46:49 -04:00
parent b5db9edc3f
commit c3dad8fd1a
5 changed files with 44 additions and 2 deletions

View File

@@ -0,0 +1,5 @@
export enum OrganizationUserStatusType {
Invited = 0,
Accepted = 1,
Confirmed = 2,
}

View File

@@ -0,0 +1,5 @@
export enum OrganizationUserType {
Owner = 0,
Admin = 1,
User = 2,
}