From 4400d2fdd933204044aeb18ce7d8613c53aa87c0 Mon Sep 17 00:00:00 2001 From: Unknwon Date: Sun, 11 Jun 2017 00:34:14 -0400 Subject: Refactoring: rename package routers -> routes --- routes/api/v1/convert/utils.go | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 routes/api/v1/convert/utils.go (limited to 'routes/api/v1/convert/utils.go') diff --git a/routes/api/v1/convert/utils.go b/routes/api/v1/convert/utils.go new file mode 100644 index 00000000..d0beab3d --- /dev/null +++ b/routes/api/v1/convert/utils.go @@ -0,0 +1,19 @@ +// Copyright 2016 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package convert + +import ( + "github.com/gogits/gogs/pkg/setting" +) + +// ToCorrectPageSize makes sure page size is in allowed range. +func ToCorrectPageSize(size int) int { + if size <= 0 { + size = 10 + } else if size > setting.API.MaxResponseItems { + size = setting.API.MaxResponseItems + } + return size +} -- cgit v1.2.3