@using Bit.Admin.Enums; @using Bit.Core.Enums @using Bit.Core.AdminConsole.Enums.Provider @using Bit.Core.Billing.Enums @using Bit.SharedWeb.Utilities @inject Bit.Admin.Services.IAccessControlService AccessControlService; @model OrganizationEditModel @{ var canViewGeneralDetails = AccessControlService.UserHasPermission(Permission.Org_GeneralDetails_View); var canViewBilling = AccessControlService.UserHasPermission(Permission.Org_Billing_View); var canViewPlan = AccessControlService.UserHasPermission(Permission.Org_Plan_View); var canViewLicensing = AccessControlService.UserHasPermission(Permission.Org_Licensing_View); var canCheckEnabled = AccessControlService.UserHasPermission(Permission.Org_CheckEnabledBox); var canEditPlan = AccessControlService.UserHasPermission(Permission.Org_Plan_Edit); var canEditLicensing = AccessControlService.UserHasPermission(Permission.Org_Licensing_Edit); var canEditBilling = AccessControlService.UserHasPermission(Permission.Org_Billing_Edit); var canLaunchGateway = AccessControlService.UserHasPermission(Permission.Org_Billing_LaunchGateway); }
@if (canViewGeneralDetails) {

General

@if (Model.Provider?.Type == ProviderType.Reseller) {
@if (!string.IsNullOrWhiteSpace(Model.Owners)) { } else { }
This user should be independent of the Provider. If the Provider is disassociated with the organization, this user will maintain ownership of the organization.
} @if (Model.Organization != null) {
} } @if (canViewPlan) {

Plan

@{ var planTypes = Enum.GetValues() .Where(p => (Model.Provider == null || p is >= PlanType.TeamsMonthly2019 and <= PlanType.EnterpriseAnnually2019 or >= PlanType.TeamsMonthly2020 and <= PlanType.EnterpriseAnnually) && (Model.PlanType == PlanType.TeamsStarter || p is not PlanType.TeamsStarter) ) .Select(e => new SelectListItem { Value = ((int)e).ToString(), Text = e.GetDisplayAttribute()?.GetName() ?? e.ToString() }) .ToList(); }

Features

General

Password Manager

Secrets Manager

} @if (canViewPlan) {

Password Manager Configuration

} @if (canViewPlan) {

Secrets Manager Configuration

} @if(canViewLicensing) {

Licensing

} @if (canViewBilling) {

Billing

@if(canLaunchGateway) { }
@if (canLaunchGateway) { }
}