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
10 lines
210 B
C#
10 lines
210 B
C#
using Bit.Core.AdminConsole.Entities;
|
|
using Bit.Scim.Models;
|
|
|
|
namespace Bit.Scim.Groups.Interfaces;
|
|
|
|
public interface IPatchGroupCommandvNext
|
|
{
|
|
Task PatchGroupAsync(Group group, ScimPatchModel model);
|
|
}
|