bench-forgejo/routers/admin/orgs.go

31 lines
807 B
Go
Raw Normal View History

2014-08-29 18:20:43 +05:30
// Copyright 2014 The Gogs Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package admin
import (
"code.gitea.io/gitea/models"
"code.gitea.io/gitea/modules/base"
"code.gitea.io/gitea/modules/context"
"code.gitea.io/gitea/modules/setting"
"code.gitea.io/gitea/routers"
2014-08-29 18:20:43 +05:30
)
const (
2016-11-21 08:51:24 +05:30
tplOrgs base.TplName = "admin/org/list"
2014-08-29 18:20:43 +05:30
)
2016-11-21 08:51:24 +05:30
// Organizations show all the organizations
2016-03-11 22:26:52 +05:30
func Organizations(ctx *context.Context) {
2015-09-25 23:24:52 +05:30
ctx.Data["Title"] = ctx.Tr("admin.organizations")
2014-08-29 18:20:43 +05:30
ctx.Data["PageIsAdmin"] = true
ctx.Data["PageIsAdminOrganizations"] = true
routers.RenderUserSearch(ctx, &models.SearchUserOptions{
2016-11-07 22:23:22 +05:30
Type: models.UserTypeOrganization,
2016-07-23 21:53:54 +05:30
PageSize: setting.UI.Admin.OrgPagingNum,
Private: true,
}, tplOrgs)
2014-08-29 18:20:43 +05:30
}