2014-08-29 14:50:43 +02:00
|
|
|
// 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 (
|
2016-11-10 17:24:48 +01:00
|
|
|
"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 14:50:43 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2016-11-21 04:21:24 +01:00
|
|
|
tplOrgs base.TplName = "admin/org/list"
|
2014-08-29 14:50:43 +02:00
|
|
|
)
|
|
|
|
|
2016-11-21 04:21:24 +01:00
|
|
|
// Organizations show all the organizations
|
2016-03-11 17:56:52 +01:00
|
|
|
func Organizations(ctx *context.Context) {
|
2015-09-25 19:54:52 +02:00
|
|
|
ctx.Data["Title"] = ctx.Tr("admin.organizations")
|
2014-08-29 14:50:43 +02:00
|
|
|
ctx.Data["PageIsAdmin"] = true
|
|
|
|
ctx.Data["PageIsAdminOrganizations"] = true
|
|
|
|
|
2017-10-24 19:36:19 +02:00
|
|
|
routers.RenderUserSearch(ctx, &models.SearchUserOptions{
|
2016-11-07 17:53:22 +01:00
|
|
|
Type: models.UserTypeOrganization,
|
2016-07-23 18:23:54 +02:00
|
|
|
PageSize: setting.UI.Admin.OrgPagingNum,
|
2019-02-19 02:16:06 +01:00
|
|
|
Private: true,
|
2017-10-24 19:36:19 +02:00
|
|
|
}, tplOrgs)
|
2014-08-29 14:50:43 +02:00
|
|
|
}
|