mirror of
https://github.com/bitwarden/server.git
synced 2025-12-10 17:45:21 -06:00
* default startindex and count values on SCIM groups list api * convert params to a model, like users * review feedback * fix file name to be plural * added integration test
10 lines
277 B
C#
10 lines
277 B
C#
using Bit.Core.AdminConsole.Entities;
|
|
using Bit.Scim.Models;
|
|
|
|
namespace Bit.Scim.Groups.Interfaces;
|
|
|
|
public interface IGetGroupsListQuery
|
|
{
|
|
Task<(IEnumerable<Group> groupList, int totalResults)> GetGroupsListAsync(Guid organizationId, GetGroupsQueryParamModel model);
|
|
}
|