mirror of
https://github.com/bitwarden/browser
synced 2025-12-23 03:33:54 +00:00
[Provider] Add initial support for providers (#399)
This commit is contained in:
@@ -50,4 +50,9 @@ export enum EventType {
|
||||
// Organization_ClientExportedVault = 1602,
|
||||
|
||||
Policy_Updated = 1700,
|
||||
|
||||
ProviderUser_Invited = 1800,
|
||||
ProviderUser_Confirmed = 1801,
|
||||
ProviderUser_Updated = 1802,
|
||||
ProviderUser_Removed = 1803,
|
||||
}
|
||||
|
||||
@@ -8,6 +8,7 @@ export enum Permissions {
|
||||
ManageGroups,
|
||||
ManageOrganization,
|
||||
ManagePolicies,
|
||||
ManageProvider,
|
||||
ManageUsers,
|
||||
ManageUsersPassword,
|
||||
}
|
||||
|
||||
5
common/src/enums/providerUserStatusType.ts
Normal file
5
common/src/enums/providerUserStatusType.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
export enum ProviderUserStatusType {
|
||||
Invited = 0,
|
||||
Accepted = 1,
|
||||
Confirmed = 2,
|
||||
}
|
||||
4
common/src/enums/providerUserType.ts
Normal file
4
common/src/enums/providerUserType.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
export enum ProviderUserType {
|
||||
ProviderAdmin = 0,
|
||||
ServiceUser = 1,
|
||||
}
|
||||
Reference in New Issue
Block a user