diff options
author | KN4CK3R <admin@oldschoolhack.me> | 2021-09-14 19:48:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-14 18:48:27 +0100 |
commit | 87505a9464a2c2c9d16547e06b0c922518dea73c (patch) | |
tree | b04d85857b76d506cadc6abe79f62180a78ff1d9 /models/org.go | |
parent | 0a542dd59f8061797976f33690bf10357aa0b0ad (diff) | |
download | gitea-87505a9464a2c2c9d16547e06b0c922518dea73c.tar.gz gitea-87505a9464a2c2c9d16547e06b0c922518dea73c.zip |
Add `AbsoluteListOptions` (#17028)
This PR adds a `ListOptions` type which is not paged but uses absolute values. It is implemented as discussed in Discord.
Extracted from #16510 to clean that PR.
Diffstat (limited to 'models/org.go')
-rw-r--r-- | models/org.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/models/org.go b/models/org.go index 9540c4240e..a3229470a4 100644 --- a/models/org.go +++ b/models/org.go @@ -569,7 +569,7 @@ func GetOrgUsersByUserID(uid int64, opts *SearchOrganizationsOptions) ([]*OrgUse } if opts.PageSize != 0 { - sess = opts.setSessionPagination(sess) + sess = setSessionPagination(sess, opts) } err := sess. @@ -589,7 +589,7 @@ func getOrgUsersByOrgID(e Engine, opts *FindOrgMembersOpts) ([]*OrgUser, error) sess.And("is_public = ?", true) } if opts.ListOptions.PageSize > 0 { - sess = opts.setSessionPagination(sess) + sess = setSessionPagination(sess, opts) ous := make([]*OrgUser, 0, opts.PageSize) return ous, sess.Find(&ous) |