mirror of
https://github.com/bitwarden/server
synced 2025-12-21 18:53:41 +00:00
requested changes
This commit is contained in:
@@ -4,7 +4,7 @@ namespace Bit.Core.Models.Api
|
||||
{
|
||||
public class SsoConfigRequestModel
|
||||
{
|
||||
public long Id { get; set; }
|
||||
public long? Id { get; set; }
|
||||
public bool Enabled { get; set; }
|
||||
public Guid OrganizationId { get; set; }
|
||||
public string Data { get; set; }
|
||||
|
||||
@@ -19,7 +19,7 @@ namespace Bit.Core.Models.Api
|
||||
Data = ssoConfig.Data;
|
||||
}
|
||||
|
||||
public long Id { get; set; }
|
||||
public long? Id { get; set; }
|
||||
public bool Enabled { get; set; }
|
||||
public Guid OrganizationId { get; set; }
|
||||
public string Data { get; set; }
|
||||
|
||||
@@ -4,7 +4,7 @@ namespace Bit.Core.Models.Table
|
||||
{
|
||||
public class SsoConfig
|
||||
{
|
||||
public long Id { get; set; }
|
||||
public long? Id { get; set; }
|
||||
public bool Enabled { get; set; } = true;
|
||||
public Guid OrganizationId { get; set; }
|
||||
public string Data { get; set; }
|
||||
|
||||
Reference in New Issue
Block a user