diff options
author | Unknwon <u@gogs.io> | 2016-03-15 14:23:12 -0400 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2016-03-15 14:23:12 -0400 |
commit | 149d62a648d5b852e43125834ed9b1cb6b49bdc0 (patch) | |
tree | 6380491938794ab1125fde8e488c8e2840c038cd /routers/admin/repos.go | |
parent | 9df5c39bca6fb397449525b0f1eb0d24d993439f (diff) | |
download | gitea-149d62a648d5b852e43125834ed9b1cb6b49bdc0.tar.gz gitea-149d62a648d5b852e43125834ed9b1cb6b49bdc0.zip |
#13 fix admin can't search private repos
- update glide info
Diffstat (limited to 'routers/admin/repos.go')
-rw-r--r-- | routers/admin/repos.go | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/routers/admin/repos.go b/routers/admin/repos.go index e78941ab4c..8b5caa8d72 100644 --- a/routers/admin/repos.go +++ b/routers/admin/repos.go @@ -22,8 +22,14 @@ func Repos(ctx *context.Context) { ctx.Data["PageIsAdmin"] = true ctx.Data["PageIsAdminRepositories"] = true - routers.RenderRepoSearch(ctx, models.CountRepositories, models.Repositories, - setting.AdminRepoPagingNum, "id ASC", REPOS) + routers.RenderRepoSearch(ctx, &routers.RepoSearchOptions{ + Counter: models.CountRepositories, + Ranger: models.Repositories, + Private: true, + PageSize: setting.AdminRepoPagingNum, + OrderBy: "id ASC", + TplName: REPOS, + }) } func DeleteRepo(ctx *context.Context) { |