mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 13:08:17 -05:00
21 lines
658 B
C#
21 lines
658 B
C#
using Bit.Core.AdminConsole.Enums;
|
|
using Bit.Core.AdminConsole.Models.OrganizationConnectionConfigs;
|
|
using Bit.Core.Entities;
|
|
using Bit.Core.Repositories;
|
|
using Bit.Core.Settings;
|
|
|
|
namespace Bit.Scim.Context;
|
|
|
|
public interface IScimContext
|
|
{
|
|
ScimProviderType RequestScimProvider { get; set; }
|
|
ScimConfig ScimConfiguration { get; set; }
|
|
Guid? OrganizationId { get; set; }
|
|
Organization Organization { get; set; }
|
|
Task BuildAsync(
|
|
HttpContext httpContext,
|
|
GlobalSettings globalSettings,
|
|
IOrganizationRepository organizationRepository,
|
|
IOrganizationConnectionRepository organizationConnectionRepository);
|
|
}
|