1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 05:00:19 -05:00
bitwarden/bitwarden_license/src/Scim/Utilities/ScimServiceCollectionExtensions.cs
Thomas Rittson 54f4ba945e
[PM-17558] Remove ShortcutDuplicatePatchRequests feature flag (#5551)
* Delete old command and feature flag switch

* Rename vNext command

* Remove feature flag
2025-03-27 10:13:56 -04:00

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>();
}
}