utils.go 288 B

123456789101112131415
  1. package convert
  2. import (
  3. "gogs.io/gogs/internal/conf"
  4. )
  5. // ToCorrectPageSize makes sure page size is in allowed range.
  6. func ToCorrectPageSize(size int) int {
  7. if size <= 0 {
  8. size = 10
  9. } else if size > conf.API.MaxResponseItems {
  10. size = conf.API.MaxResponseItems
  11. }
  12. return size
  13. }