2022-04-08 00:29:56 +05:30
|
|
|
// Copyright 2017 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2022-04-08 00:29:56 +05:30
|
|
|
|
|
|
|
package utils
|
|
|
|
|
|
|
|
import (
|
|
|
|
"code.gitea.io/gitea/models/db"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
2022-12-29 08:27:15 +05:30
|
|
|
"code.gitea.io/gitea/services/convert"
|
2022-04-08 00:29:56 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
// 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")),
|
|
|
|
}
|
|
|
|
}
|