mirror of
https://github.com/bitwarden/server
synced 2025-12-25 04:33:26 +00:00
[PM-12358] New Verified Organization Domain SSO Detail endpoint (#4838)
* Added /domain/sso/verified to organization controller * Restricting sproc to only return verified domains if the org has sso. Adding name. corrected route. removed not found exception. Adding the sproc definition to the SQL project
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
namespace Bit.Core.Models.Data.Organizations;
|
||||
|
||||
public class VerifiedOrganizationDomainSsoDetail
|
||||
{
|
||||
public VerifiedOrganizationDomainSsoDetail()
|
||||
{
|
||||
}
|
||||
|
||||
public VerifiedOrganizationDomainSsoDetail(Guid organizationId, string organizationName, string domainName,
|
||||
string organizationIdentifier)
|
||||
{
|
||||
OrganizationId = organizationId;
|
||||
OrganizationName = organizationName;
|
||||
DomainName = domainName;
|
||||
OrganizationIdentifier = organizationIdentifier;
|
||||
}
|
||||
|
||||
public Guid OrganizationId { get; init; }
|
||||
public string OrganizationName { get; init; }
|
||||
public string DomainName { get; init; }
|
||||
public string OrganizationIdentifier { get; init; }
|
||||
}
|
||||
Reference in New Issue
Block a user