1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-01 16:12:49 -05:00

requested changes

This commit is contained in:
Matt Portune
2020-06-25 18:06:27 -04:00
parent 39a81af3e9
commit f46023f2f5
5 changed files with 7 additions and 5 deletions

View File

@ -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; }

View File

@ -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; }

View File

@ -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; }