Files
Atay-Makhzan/routers/web/admin/orgs.go
T

37 lines
1.1 KiB
Go
Raw Normal View History

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