2014-08-29 06:50:43 -06:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
2020-01-24 12:00:29 -07:00
|
|
|
// Copyright 2020 The Gitea Authors.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2014-08-29 06:50:43 -06:00
|
|
|
|
|
|
|
package admin
|
|
|
|
|
|
|
|
import (
|
2021-09-24 05:32:56 -06:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2021-11-24 02:49:20 -07:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2016-11-10 09:24:48 -07:00
|
|
|
"code.gitea.io/gitea/modules/base"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2020-01-12 08:43:44 -07:00
|
|
|
"code.gitea.io/gitea/modules/structs"
|
2021-06-08 17:33:54 -06:00
|
|
|
"code.gitea.io/gitea/routers/web/explore"
|
2024-02-27 00:12:22 -07:00
|
|
|
"code.gitea.io/gitea/services/context"
|
2014-08-29 06:50:43 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2016-11-20 20:21:24 -07:00
|
|
|
tplOrgs base.TplName = "admin/org/list"
|
2014-08-29 06:50:43 -06:00
|
|
|
)
|
|
|
|
|
2016-11-20 20:21:24 -07:00
|
|
|
// Organizations show all the organizations
|
2016-03-11 09:56:52 -07:00
|
|
|
func Organizations(ctx *context.Context) {
|
2015-09-25 11:54:52 -06:00
|
|
|
ctx.Data["Title"] = ctx.Tr("admin.organizations")
|
2014-08-29 06:50:43 -06:00
|
|
|
ctx.Data["PageIsAdminOrganizations"] = true
|
|
|
|
|
2023-05-06 08:04:55 -06:00
|
|
|
if ctx.FormString("sort") == "" {
|
2023-11-09 03:11:45 -07:00
|
|
|
ctx.SetFormString("sort", UserSearchDefaultAdminSort)
|
2023-05-06 08:04:55 -06:00
|
|
|
}
|
|
|
|
|
2021-11-24 02:49:20 -07:00
|
|
|
explore.RenderUserSearch(ctx, &user_model.SearchUserOptions{
|
2023-09-14 00:53:36 -06:00
|
|
|
Actor: ctx.Doer,
|
|
|
|
Type: user_model.UserTypeOrganization,
|
2024-04-27 02:03:49 -06:00
|
|
|
IncludeReserved: true, // administrator needs to list all accounts include reserved
|
2021-09-24 05:32:56 -06:00
|
|
|
ListOptions: db.ListOptions{
|
2020-01-24 12:00:29 -07:00
|
|
|
PageSize: setting.UI.Admin.OrgPagingNum,
|
|
|
|
},
|
|
|
|
Visible: []structs.VisibleType{structs.VisibleTypePublic, structs.VisibleTypeLimited, structs.VisibleTypePrivate},
|
2017-10-24 11:36:19 -06:00
|
|
|
}, tplOrgs)
|
2014-08-29 06:50:43 -06:00
|
|
|
}
|