mirror of
https://github.com/bitwarden/server.git
synced 2025-12-11 13:53:48 -06:00
55 lines
2.6 KiB
C#
55 lines
2.6 KiB
C#
using Bit.Core.AdminConsole.Models.Data.Provider;
|
|
using Bit.Core.Billing.Enums;
|
|
using Bit.Core.Enums;
|
|
using Bit.Core.Models.Data;
|
|
using Bit.Core.Utilities;
|
|
|
|
namespace Bit.Api.AdminConsole.Models.Response;
|
|
|
|
public class ProfileProviderOrganizationResponseModel : ProfileOrganizationResponseModel
|
|
{
|
|
public ProfileProviderOrganizationResponseModel(ProviderUserOrganizationDetails organization)
|
|
: base("profileProviderOrganization")
|
|
{
|
|
Id = organization.OrganizationId;
|
|
Name = organization.Name;
|
|
UsePolicies = organization.UsePolicies;
|
|
UseSso = organization.UseSso;
|
|
UseKeyConnector = organization.UseKeyConnector;
|
|
UseScim = organization.UseScim;
|
|
UseGroups = organization.UseGroups;
|
|
UseDirectory = organization.UseDirectory;
|
|
UseEvents = organization.UseEvents;
|
|
UseTotp = organization.UseTotp;
|
|
Use2fa = organization.Use2fa;
|
|
UseApi = organization.UseApi;
|
|
UseResetPassword = organization.UseResetPassword;
|
|
UsersGetPremium = organization.UsersGetPremium;
|
|
UseCustomPermissions = organization.UseCustomPermissions;
|
|
UseActivateAutofillPolicy = StaticStore.GetPlan(organization.PlanType).ProductTier == ProductTierType.Enterprise;
|
|
SelfHost = organization.SelfHost;
|
|
Seats = organization.Seats;
|
|
MaxCollections = organization.MaxCollections;
|
|
MaxStorageGb = organization.MaxStorageGb;
|
|
Key = organization.Key;
|
|
HasPublicAndPrivateKeys = organization.PublicKey != null && organization.PrivateKey != null;
|
|
Status = OrganizationUserStatusType.Confirmed; // Provider users are always confirmed
|
|
Type = OrganizationUserType.Owner; // Provider users behave like Owners
|
|
Enabled = organization.Enabled;
|
|
SsoBound = false;
|
|
Identifier = organization.Identifier;
|
|
Permissions = new Permissions();
|
|
ResetPasswordEnrolled = false;
|
|
UserId = organization.UserId;
|
|
ProviderId = organization.ProviderId;
|
|
ProviderName = organization.ProviderName;
|
|
ProductTierType = StaticStore.GetPlan(organization.PlanType).ProductTier;
|
|
LimitCollectionCreation = organization.LimitCollectionCreation;
|
|
LimitCollectionDeletion = organization.LimitCollectionDeletion;
|
|
// https://bitwarden.atlassian.net/browse/PM-10863
|
|
LimitCollectionCreationDeletion = organization.LimitCollectionCreationDeletion;
|
|
AllowAdminAccessToAllCollectionItems = organization.AllowAdminAccessToAllCollectionItems;
|
|
UseRiskInsights = organization.UseRiskInsights;
|
|
}
|
|
}
|