mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 21:18:13 -05:00

* Copy PatchGroupCommand to vNext and refactor * Detect duplicate add requests and return early * Update read repository method to use HA replica * Add new write repository method
34 lines
1.1 KiB
C#
34 lines
1.1 KiB
C#
using Bit.Scim.Groups;
|
|
using Bit.Scim.Groups.Interfaces;
|
|
using Bit.Scim.Users;
|
|
using Bit.Scim.Users.Interfaces;
|
|
|
|
namespace Bit.Scim.Utilities;
|
|
|
|
public static class ScimServiceCollectionExtensions
|
|
{
|
|
public static void AddScimGroupCommands(this IServiceCollection services)
|
|
{
|
|
services.AddScoped<IPatchGroupCommand, PatchGroupCommand>();
|
|
services.AddScoped<IPatchGroupCommandvNext, PatchGroupCommandvNext>();
|
|
services.AddScoped<IPostGroupCommand, PostGroupCommand>();
|
|
services.AddScoped<IPutGroupCommand, PutGroupCommand>();
|
|
}
|
|
|
|
public static void AddScimGroupQueries(this IServiceCollection services)
|
|
{
|
|
services.AddScoped<IGetGroupsListQuery, GetGroupsListQuery>();
|
|
}
|
|
|
|
public static void AddScimUserCommands(this IServiceCollection services)
|
|
{
|
|
services.AddScoped<IPatchUserCommand, PatchUserCommand>();
|
|
services.AddScoped<IPostUserCommand, PostUserCommand>();
|
|
}
|
|
|
|
public static void AddScimUserQueries(this IServiceCollection services)
|
|
{
|
|
services.AddScoped<IGetUsersListQuery, GetUsersListQuery>();
|
|
}
|
|
}
|