mirror of
https://github.com/bitwarden/server.git
synced 2026-02-09 10:23:10 +08:00
* Additional changes for enterprise portal sso config * Requested changes * rename enum to Saml2 * Limit to one SSO config per org
13 lines
331 B
C#
13 lines
331 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
using Bit.Core.Models.Table;
|
|
|
|
namespace Bit.Core.Repositories
|
|
{
|
|
public interface ISsoConfigRepository : IRepository<SsoConfig, long>
|
|
{
|
|
Task<SsoConfig> GetByOrganizationIdAsync(Guid organizationId);
|
|
Task<SsoConfig> GetByIdentifierAsync(string identifier);
|
|
}
|
|
}
|