1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-30 15:42:48 -05:00
Files
bitwarden/src/Admin/Enums/Permissions.cs
Rui Tomé 9b478107b6 [PM-15128] Add Promote Provider Service User functionality to Bitwarden Portal (#5118)
* Add Promote Provider Service User feature to Admin Portal

* Rename feature flag key for Promote Provider Service User tool
2024-12-11 11:09:12 +00:00

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
}