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

[SG-1082]-Defect-Update stored procedure to properly determine is SSO is available (#2715)

* Fixed SsoAvailble bug by using the enabled column from SsoConfig table, updated the existing query for EF Core

* Added no tracking to ef query since it is read only
This commit is contained in:
SmithThe4th
2023-02-17 13:19:21 -05:00
committed by GitHub
parent 69511160cb
commit 34544f2292
4 changed files with 54 additions and 28 deletions

View File

@ -10,7 +10,7 @@ public class OrganizationDomainSsoDetailsData
public bool SsoAvailable { get; set; }
public string OrganizationIdentifier { get; set; }
public bool SsoRequired { get; set; }
public PolicyType PolicyType { get; set; }
public PolicyType? PolicyType { get; set; }
public DateTime? VerifiedDate { get; set; }
public bool OrganizationEnabled { get; set; }
}