summaryrefslogtreecommitdiffstats
path: root/routers/admin/repos.go
diff options
context:
space:
mode:
Diffstat (limited to 'routers/admin/repos.go')
-rw-r--r--routers/admin/repos.go10
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) {