mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 21:18:13 -05:00
switched to initialization block
This commit is contained in:
parent
4ff27fd668
commit
085dbffed1
@ -4,28 +4,29 @@ using Bit.Core.Utilities;
|
|||||||
|
|
||||||
namespace Bit.Core.AdminConsole.Models.Business;
|
namespace Bit.Core.AdminConsole.Models.Business;
|
||||||
|
|
||||||
public record OrganizationDto(
|
public record OrganizationDto
|
||||||
Guid OrganizationId,
|
|
||||||
bool UseCustomPermissions,
|
|
||||||
int? Seats,
|
|
||||||
int? MaxAutoScaleSeats,
|
|
||||||
int? SmSeats,
|
|
||||||
int? SmMaxAutoScaleSeats,
|
|
||||||
Plan Plan,
|
|
||||||
string GatewayCustomerId,
|
|
||||||
string GatewaySubscriptionId,
|
|
||||||
bool UseSecretsManager
|
|
||||||
)
|
|
||||||
{
|
{
|
||||||
|
public Guid OrganizationId { get; init; }
|
||||||
|
public int? Seats { get; init; }
|
||||||
|
public int? MaxAutoScaleSeats { get; init; }
|
||||||
|
public int? SmSeats { get; init; }
|
||||||
|
public int? SmMaxAutoScaleSeats { get; init; }
|
||||||
|
public Plan Plan { get; init; }
|
||||||
|
public string GatewayCustomerId { get; init; }
|
||||||
|
public string GatewaySubscriptionId { get; init; }
|
||||||
|
public bool UseSecretsManager { get; init; }
|
||||||
|
|
||||||
public static OrganizationDto FromOrganization(Organization organization) =>
|
public static OrganizationDto FromOrganization(Organization organization) =>
|
||||||
new(organization.Id,
|
new()
|
||||||
organization.UseCustomPermissions,
|
{
|
||||||
organization.Seats,
|
OrganizationId = organization.Id,
|
||||||
organization.MaxAutoscaleSeats,
|
Seats = organization.Seats,
|
||||||
organization.SmSeats,
|
MaxAutoScaleSeats = organization.MaxAutoscaleSeats,
|
||||||
organization.MaxAutoscaleSmSeats,
|
SmSeats = organization.SmSeats,
|
||||||
StaticStore.GetPlan(organization.PlanType),
|
SmMaxAutoScaleSeats = organization.MaxAutoscaleSmSeats,
|
||||||
organization.GatewayCustomerId,
|
Plan = StaticStore.GetPlan(organization.PlanType),
|
||||||
organization.GatewaySubscriptionId,
|
GatewayCustomerId = organization.GatewayCustomerId,
|
||||||
organization.UseSecretsManager);
|
GatewaySubscriptionId = organization.GatewaySubscriptionId,
|
||||||
};
|
UseSecretsManager = organization.UseSecretsManager
|
||||||
|
};
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user