[CHANGE] Search all roles from users/groups

This commit is contained in:
max 2025-02-24 16:52:57 +01:00
parent e65b937128
commit d6c0ad1138

View File

@ -114,4 +114,9 @@ public class RoleRepository(IDbContextFactory<AuthorityContext> contextFactory)
return HandleException("Failed to delete role!", e); return HandleException("Failed to delete role!", e);
} }
} }
public async Task<ListResult<AuthorityRoleItem>> GetUserRolesAsync(AuthorityUser user, int limit = 20, int offset = 0, string search = "", CancellationToken cancellationToken = default)
{
return ListResult<AuthorityRoleItem>.Failed("Not implemented!");
}
} }