fix bug and trottle

Signed-off-by: Ronni Skansing <rskansing@gmail.com>
This commit is contained in:
Ronni Skansing
2026-06-07 17:27:07 +02:00
parent 1f0f138652
commit 1586e3eaec
6 changed files with 170 additions and 61 deletions
+2 -2
View File
@@ -240,7 +240,7 @@ func (c *Scim) ListGroups(g *gin.Context) {
}
base := scimBaseURL(g, companyID)
startIndex := parseIntQuery(g, "startIndex", 1)
count := parseIntQuery(g, "count", 0)
count := parseIntQuery(g, "count", -1)
filter := g.Query("filter")
excludedAttributes := g.Query("excludedAttributes")
@@ -447,7 +447,7 @@ func (c *Scim) ListUsers(g *gin.Context) {
base := scimBaseURL(g, companyID)
filter := g.Query("filter")
startIndex := parseIntQuery(g, "startIndex", 1)
count := parseIntQuery(g, "count", 0)
count := parseIntQuery(g, "count", -1)
sortBy := g.Query("sortBy")
sortOrder := g.Query("sortOrder")