aboutsummaryrefslogtreecommitdiffstats
path: root/models/gpg_key.go
diff options
context:
space:
mode:
authorKN4CK3R <admin@oldschoolhack.me>2021-09-14 19:48:27 +0200
committerGitHub <noreply@github.com>2021-09-14 18:48:27 +0100
commit87505a9464a2c2c9d16547e06b0c922518dea73c (patch)
treeb04d85857b76d506cadc6abe79f62180a78ff1d9 /models/gpg_key.go
parent0a542dd59f8061797976f33690bf10357aa0b0ad (diff)
downloadgitea-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/gpg_key.go')
-rw-r--r--models/gpg_key.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/models/gpg_key.go b/models/gpg_key.go
index 1072813b1b..cd286604a3 100644
--- a/models/gpg_key.go
+++ b/models/gpg_key.go
@@ -64,7 +64,7 @@ func ListGPGKeys(uid int64, listOptions ListOptions) ([]*GPGKey, error) {
func listGPGKeys(e Engine, uid int64, listOptions ListOptions) ([]*GPGKey, error) {
sess := e.Table(&GPGKey{}).Where("owner_id=? AND primary_key_id=''", uid)
if listOptions.Page != 0 {
- sess = listOptions.setSessionPagination(sess)
+ sess = setSessionPagination(sess, &listOptions)
}
keys := make([]*GPGKey, 0, 2)