chore: move converter methods users v2 to separate converter package + add tests (#10567)

# Which Problems Are Solved

As requested by @adlerhurst in
https://github.com/zitadel/zitadel/pull/10415#discussion_r2298087711 , I
am moving the refactoring of v2 user converter methods to a separate PR

# How the Problems Are Solved

Cherry-pick 648c234caf

# Additional Context

Parent of https://github.com/zitadel/zitadel/pull/10415

(cherry picked from commit b604615cab)
This commit is contained in:
Marco A.
2025-08-27 13:08:13 +02:00
committed by Livio Spring
parent a3dac4d5cd
commit df0f033880
12 changed files with 1624 additions and 306 deletions

View File

@@ -39,7 +39,7 @@ func ListQueryToQuery(query *object.ListQuery) (offset, limit uint64, asc bool)
if query == nil {
return 0, 0, false
}
return query.Offset, uint64(query.Limit), query.Asc
return query.Offset, uint64(query.GetLimit()), query.GetAsc()
}
func ResourceOwnerFromReq(ctx context.Context, req *object.RequestContext) string {