mirror of
https://github.com/bitwarden/server.git
synced 2025-06-30 15:42:48 -05:00

* Add Promote Provider Service User feature to Admin Portal * Rename feature flag key for Promote Provider Service User tool
55 lines
1.3 KiB
C#
55 lines
1.3 KiB
C#
namespace Bit.Admin.Enums;
|
|
|
|
public enum Permission
|
|
{
|
|
User_List_View,
|
|
User_UserInformation_View,
|
|
User_GeneralDetails_View,
|
|
User_Delete,
|
|
User_UpgradePremium,
|
|
User_BillingInformation_View,
|
|
User_BillingInformation_DownloadInvoice,
|
|
User_BillingInformation_CreateEditTransaction,
|
|
User_Premium_View,
|
|
User_Premium_Edit,
|
|
User_Licensing_View,
|
|
User_Licensing_Edit,
|
|
User_Billing_View,
|
|
User_Billing_Edit,
|
|
User_Billing_LaunchGateway,
|
|
|
|
Org_List_View,
|
|
Org_OrgInformation_View,
|
|
Org_GeneralDetails_View,
|
|
Org_CheckEnabledBox,
|
|
Org_BusinessInformation_View,
|
|
Org_InitiateTrial,
|
|
Org_Delete,
|
|
Org_BillingInformation_View,
|
|
Org_BillingInformation_DownloadInvoice,
|
|
Org_BillingInformation_CreateEditTransaction,
|
|
Org_Plan_View,
|
|
Org_Plan_Edit,
|
|
Org_Licensing_View,
|
|
Org_Licensing_Edit,
|
|
Org_Billing_View,
|
|
Org_Billing_Edit,
|
|
Org_Billing_LaunchGateway,
|
|
|
|
Provider_List_View,
|
|
Provider_Create,
|
|
Provider_Edit,
|
|
Provider_View,
|
|
Provider_ResendEmailInvite,
|
|
|
|
Tools_ChargeBrainTreeCustomer,
|
|
Tools_PromoteAdmin,
|
|
Tools_PromoteProviderServiceUser,
|
|
Tools_GenerateLicenseFile,
|
|
Tools_ManageTaxRates,
|
|
Tools_ManageStripeSubscriptions,
|
|
Tools_CreateEditTransaction,
|
|
Tools_ProcessStripeEvents,
|
|
Tools_MigrateProviders
|
|
}
|