diff options
author | Unknwon <u@gogs.io> | 2017-02-18 18:37:47 -0500 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2017-02-18 18:37:47 -0500 |
commit | c69900325d3b2d5eb7584512547fdc567bf6df91 (patch) | |
tree | 3e276a812d99eff360afe4ed614ad28cfad2c5c9 /cmd | |
parent | 685737b8168ea4cf23410d5adf83fcb0ed581467 (diff) |
commits: able to specify pageSize dynamically (#3965)
Usage: <url>?page={page}&pageSize={pageSize}
Also avoid/removed getting total commits count for pagination,
users are only allowed navigation by 'newer' and 'older'.
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/web.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -95,7 +95,7 @@ func checkVersion() { {"github.com/go-macaron/toolbox", toolbox.Version, "0.1.0"}, {"gopkg.in/ini.v1", ini.Version, "1.8.4"}, {"gopkg.in/macaron.v1", macaron.Version, "1.1.7"}, - {"github.com/gogits/git-module", git.Version, "0.4.10"}, + {"github.com/gogits/git-module", git.Version, "0.4.11"}, {"github.com/gogits/go-gogs-client", gogs.Version, "0.12.1"}, } for _, c := range checkers { |