mirror of
https://github.com/bitwarden/server.git
synced 2026-01-31 14:13:18 +08:00
* get rid of cosmos logging sink * remove logs from layout * delete log models * remove logs_view permission --------- Co-authored-by: Matt Bishop <mbishop@bitwarden.com>
52 lines
1.2 KiB
C#
52 lines
1.2 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_GenerateLicenseFile,
|
|
Tools_ManageTaxRates,
|
|
Tools_ManageStripeSubscriptions,
|
|
Tools_CreateEditTransaction
|
|
}
|