diff options
author | Unknown <joe2010xtmf@163.com> | 2014-05-07 16:51:14 -0400 |
---|---|---|
committer | Unknown <joe2010xtmf@163.com> | 2014-05-07 16:51:14 -0400 |
commit | 33d32585b1b7232c764e8cb8629a33076902c882 (patch) | |
tree | 4450575c9a0a71c8a7d51e9b4eafee321226d8c2 /routers/admin/admin.go | |
parent | 6fb7229beaadb53f59cb85d80976f99708a7434d (diff) | |
download | gitea-33d32585b1b7232c764e8cb8629a33076902c882.tar.gz gitea-33d32585b1b7232c764e8cb8629a33076902c882.zip |
Add mention, read/unread support of issue tracker
Diffstat (limited to 'routers/admin/admin.go')
-rw-r--r-- | routers/admin/admin.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/admin/admin.go b/routers/admin/admin.go index 910027881d..dbd5e94594 100644 --- a/routers/admin/admin.go +++ b/routers/admin/admin.go @@ -152,7 +152,7 @@ func Repositories(ctx *middleware.Context) { ctx.Data["PageIsRepos"] = true var err error - ctx.Data["Repos"], err = models.GetRepos(200, 0) + ctx.Data["Repos"], err = models.GetRepositoriesWithUsers(200, 0) if err != nil { ctx.Handle(500, "admin.Repositories", err) return |