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

* Delete old command and feature flag switch * Rename vNext command * Remove feature flag
33 lines
1.0 KiB
C#
33 lines
1.0 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<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>();
|
|
}
|
|
}
|