summaryrefslogtreecommitdiffstats
path: root/routers/admin/users.go
diff options
context:
space:
mode:
authorUnknwon <u@gogs.io>2016-03-15 14:23:12 -0400
committerUnknwon <u@gogs.io>2016-03-15 14:23:12 -0400
commit149d62a648d5b852e43125834ed9b1cb6b49bdc0 (patch)
tree6380491938794ab1125fde8e488c8e2840c038cd /routers/admin/users.go
parent9df5c39bca6fb397449525b0f1eb0d24d993439f (diff)
downloadgitea-149d62a648d5b852e43125834ed9b1cb6b49bdc0.tar.gz
gitea-149d62a648d5b852e43125834ed9b1cb6b49bdc0.zip
#13 fix admin can't search private repos
- update glide info
Diffstat (limited to 'routers/admin/users.go')
-rw-r--r--routers/admin/users.go10
1 files changed, 8 insertions, 2 deletions
diff --git a/routers/admin/users.go b/routers/admin/users.go
index 00028a2fdd..76fbcd1683 100644
--- a/routers/admin/users.go
+++ b/routers/admin/users.go
@@ -30,8 +30,14 @@ func Users(ctx *context.Context) {
ctx.Data["PageIsAdmin"] = true
ctx.Data["PageIsAdminUsers"] = true
- routers.RenderUserSearch(ctx, models.USER_TYPE_INDIVIDUAL, models.CountUsers, models.Users,
- setting.AdminUserPagingNum, "id ASC", USERS)
+ routers.RenderUserSearch(ctx, &routers.UserSearchOptions{
+ Type: models.USER_TYPE_INDIVIDUAL,
+ Counter: models.CountUsers,
+ Ranger: models.Users,
+ PageSize: setting.AdminUserPagingNum,
+ OrderBy: "id ASC",
+ TplName: USERS,
+ })
}
func NewUser(ctx *context.Context) {