2014-08-29 21:50:43 +09:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
2020-01-25 04:00:29 +09:00
|
|
|
// Copyright 2020 The Gitea Authors.
|
2014-08-29 21:50:43 +09:00
|
|
|
// 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-11 01:24:48 +09:00
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/base"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2020-01-13 00:43:44 +09:00
|
|
|
"code.gitea.io/gitea/modules/structs"
|
2016-11-11 01:24:48 +09:00
|
|
|
"code.gitea.io/gitea/routers"
|
2014-08-29 21:50:43 +09:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2016-11-21 12:21:24 +09:00
|
|
|
tplOrgs base.TplName = "admin/org/list"
|
2014-08-29 21:50:43 +09:00
|
|
|
)
|
|
|
|
|
2016-11-21 12:21:24 +09:00
|
|
|
// Organizations show all the organizations
|
2016-03-12 01:56:52 +09:00
|
|
|
func Organizations(ctx *context.Context) {
|
2015-09-26 02:54:52 +09:00
|
|
|
ctx.Data["Title"] = ctx.Tr("admin.organizations")
|
2014-08-29 21:50:43 +09:00
|
|
|
ctx.Data["PageIsAdmin"] = true
|
|
|
|
ctx.Data["PageIsAdminOrganizations"] = true
|
|
|
|
|
2017-10-25 02:36:19 +09:00
|
|
|
routers.RenderUserSearch(ctx, &models.SearchUserOptions{
|
2020-01-25 04:00:29 +09:00
|
|
|
Type: models.UserTypeOrganization,
|
|
|
|
ListOptions: models.ListOptions{
|
|
|
|
PageSize: setting.UI.Admin.OrgPagingNum,
|
|
|
|
},
|
|
|
|
Visible: []structs.VisibleType{structs.VisibleTypePublic, structs.VisibleTypeLimited, structs.VisibleTypePrivate},
|
2017-10-25 02:36:19 +09:00
|
|
|
}, tplOrgs)
|
2014-08-29 21:50:43 +09:00
|
|
|
}
|