mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 13:08:17 -05:00
Resolve AC Warnings (#4644)
* Resolve AC Warnings * Remove Unneeded Changes * Add Back RequiredAttribute * Format
This commit is contained in:
parent
f4dd794cba
commit
dac8f66a59
@ -143,7 +143,7 @@ public class OrganizationEditModel : OrganizationViewModel
|
|||||||
[Display(Name = "SCIM")]
|
[Display(Name = "SCIM")]
|
||||||
public bool UseScim { get; set; }
|
public bool UseScim { get; set; }
|
||||||
[Display(Name = "Secrets Manager")]
|
[Display(Name = "Secrets Manager")]
|
||||||
public bool UseSecretsManager { get; set; }
|
public new bool UseSecretsManager { get; set; }
|
||||||
[Display(Name = "Self Host")]
|
[Display(Name = "Self Host")]
|
||||||
public bool SelfHost { get; set; }
|
public bool SelfHost { get; set; }
|
||||||
[Display(Name = "Users Get Premium")]
|
[Display(Name = "Users Get Premium")]
|
||||||
|
@ -1,8 +1,11 @@
|
|||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
|
using System.Diagnostics.CodeAnalysis;
|
||||||
using Bit.Core.Entities;
|
using Bit.Core.Entities;
|
||||||
using Bit.Core.Enums;
|
using Bit.Core.Enums;
|
||||||
using Bit.Core.Models.Data.Organizations.OrganizationUsers;
|
using Bit.Core.Models.Data.Organizations.OrganizationUsers;
|
||||||
|
|
||||||
|
#nullable enable
|
||||||
|
|
||||||
namespace Bit.Api.AdminConsole.Public.Models;
|
namespace Bit.Api.AdminConsole.Public.Models;
|
||||||
|
|
||||||
public abstract class MemberBaseModel
|
public abstract class MemberBaseModel
|
||||||
@ -25,6 +28,7 @@ public abstract class MemberBaseModel
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[SetsRequiredMembers]
|
||||||
public MemberBaseModel(OrganizationUserUserDetails user)
|
public MemberBaseModel(OrganizationUserUserDetails user)
|
||||||
{
|
{
|
||||||
if (user == null)
|
if (user == null)
|
||||||
@ -46,14 +50,13 @@ public abstract class MemberBaseModel
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
[Required]
|
[Required]
|
||||||
[EnumDataType(typeof(OrganizationUserType))]
|
[EnumDataType(typeof(OrganizationUserType))]
|
||||||
public OrganizationUserType? Type { get; set; }
|
public required OrganizationUserType? Type { get; set; }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// External identifier for reference or linking this member to another system, such as a user directory.
|
/// External identifier for reference or linking this member to another system, such as a user directory.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <example>external_id_123456</example>
|
/// <example>external_id_123456</example>
|
||||||
[StringLength(300)]
|
[StringLength(300)]
|
||||||
public string ExternalId { get; set; }
|
public string? ExternalId { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The member's custom permissions if the member has a Custom role. If not supplied, all custom permissions will
|
/// The member's custom permissions if the member has a Custom role. If not supplied, all custom permissions will
|
||||||
/// default to false.
|
/// default to false.
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
|
using System.Diagnostics.CodeAnalysis;
|
||||||
using System.Text.Json.Serialization;
|
using System.Text.Json.Serialization;
|
||||||
using Bit.Api.Models.Public.Response;
|
using Bit.Api.Models.Public.Response;
|
||||||
using Bit.Core.Entities;
|
using Bit.Core.Entities;
|
||||||
@ -16,6 +17,7 @@ public class MemberResponseModel : MemberBaseModel, IResponseModel
|
|||||||
[JsonConstructor]
|
[JsonConstructor]
|
||||||
public MemberResponseModel() { }
|
public MemberResponseModel() { }
|
||||||
|
|
||||||
|
[SetsRequiredMembers]
|
||||||
public MemberResponseModel(OrganizationUser user, IEnumerable<CollectionAccessSelection> collections) : base(user)
|
public MemberResponseModel(OrganizationUser user, IEnumerable<CollectionAccessSelection> collections) : base(user)
|
||||||
{
|
{
|
||||||
if (user == null)
|
if (user == null)
|
||||||
@ -31,6 +33,7 @@ public class MemberResponseModel : MemberBaseModel, IResponseModel
|
|||||||
ResetPasswordEnrolled = user.ResetPasswordKey != null;
|
ResetPasswordEnrolled = user.ResetPasswordKey != null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[SetsRequiredMembers]
|
||||||
public MemberResponseModel(OrganizationUserUserDetails user, bool twoFactorEnabled,
|
public MemberResponseModel(OrganizationUserUserDetails user, bool twoFactorEnabled,
|
||||||
IEnumerable<CollectionAccessSelection> collections) : base(user)
|
IEnumerable<CollectionAccessSelection> collections) : base(user)
|
||||||
{
|
{
|
||||||
|
@ -8,10 +8,8 @@ public class ProviderInitiateDeleteModel : BaseMailModel
|
|||||||
Token,
|
Token,
|
||||||
ProviderNameUrlEncoded);
|
ProviderNameUrlEncoded);
|
||||||
|
|
||||||
public string WebVaultUrl { get; set; }
|
|
||||||
public string Token { get; set; }
|
public string Token { get; set; }
|
||||||
public Guid ProviderId { get; set; }
|
public Guid ProviderId { get; set; }
|
||||||
public string SiteName { get; set; }
|
|
||||||
public string ProviderName { get; set; }
|
public string ProviderName { get; set; }
|
||||||
public string ProviderNameUrlEncoded { get; set; }
|
public string ProviderNameUrlEncoded { get; set; }
|
||||||
public string ProviderBillingEmail { get; set; }
|
public string ProviderBillingEmail { get; set; }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user