2022-04-07 20:59:56 +02:00
|
|
|
// Copyright 2017 The Gitea Authors. All rights reserved.
|
2022-11-27 19:20:29 +01:00
|
|
|
// SPDX-License-Identifier: MIT
|
2022-04-07 20:59:56 +02:00
|
|
|
|
|
|
|
package utils
|
|
|
|
|
|
|
|
import (
|
|
|
|
"code.gitea.io/gitea/models/db"
|
2024-02-27 08:12:22 +01:00
|
|
|
"code.gitea.io/gitea/services/context"
|
2022-12-29 03:57:15 +01:00
|
|
|
"code.gitea.io/gitea/services/convert"
|
2022-04-07 20:59:56 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// GetListOptions returns list options using the page and limit parameters
|
|
|
|
func GetListOptions(ctx *context.APIContext) db.ListOptions {
|
|
|
|
return db.ListOptions{
|
|
|
|
Page: ctx.FormInt("page"),
|
|
|
|
PageSize: convert.ToCorrectPageSize(ctx.FormInt("limit")),
|
|
|
|
}
|
|
|
|
}
|