mirror of
https://github.com/bitwarden/server
synced 2026-01-05 18:13:31 +00: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
326 B
C#
10 lines
326 B
C#
using Bit.Core.Models.Data.Organizations.OrganizationUsers;
|
|
using Bit.Scim.Models;
|
|
|
|
namespace Bit.Scim.Users.Interfaces;
|
|
|
|
public interface IGetUsersListQuery
|
|
{
|
|
Task<(IEnumerable<OrganizationUserUserDetails> userList, int totalResults)> GetUsersListAsync(Guid organizationId, GetUsersQueryParamModel userQueryParams);
|
|
}
|