mirror of
https://github.com/bitwarden/server.git
synced 2025-07-02 16:42:50 -05:00

* refactor the plan and create new objects * initial commit * Add new plan types * continue the refactoring by adding new plantypes * changes for plans * Refactoring continues * making changes for plan * Fixing the failing test * Fixing whitespace * Fix some in correct values * Resolve the plan data * rearranging the plan * Make the plan more immutable * Resolve the lint errors * Fix the failing test * Add custom plan * Fix the failing test * Fix the failing test * resolve the failing addons after refactoring * Refactoring * Merge branch 'master' into ac-1451/refactor-staticstore-plans-and-consuming-logic * merge from master * Merge branch 'master' into ac-1451/refactor-staticstore-plans-and-consuming-logic * format whitespace * resolve the conflict * Fix some pr comments * Fixing some of the pr comments * fixing some of the pr comments * Resolve some pr comments * Resolve pr comments * Resolves some pr comments * Resolving some or comments * Resolve a failing test * fix the failing test * Resolving some pr comments * Fix the failing test * resolve pr comment * add a using statement fir a failing test --------- Co-authored-by: Thomas Rittson <trittson@bitwarden.com>
48 lines
2.1 KiB
C#
48 lines
2.1 KiB
C#
using Bit.Core.Enums;
|
|
using Bit.Core.Models.Data;
|
|
using Bit.Core.Utilities;
|
|
|
|
namespace Bit.Api.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 = organization.PlanType == PlanType.EnterpriseAnnually ||
|
|
organization.PlanType == PlanType.EnterpriseMonthly;
|
|
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;
|
|
PlanProductType = StaticStore.GetPlan(organization.PlanType).Product;
|
|
}
|
|
}
|