2014-08-29 18:20:43 +05:30
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
2020-01-25 00:30:29 +05:30
|
|
|
// Copyright 2020 The Gitea Authors.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2014-08-29 18:20:43 +05:30
|
|
|
|
|
|
|
package admin
|
|
|
|
|
|
|
|
import (
|
2021-09-24 17:02:56 +05:30
|
|
|
"code.gitea.io/gitea/models/db"
|
2021-11-24 15:19:20 +05:30
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2016-11-10 21:54:48 +05:30
|
|
|
"code.gitea.io/gitea/modules/base"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2020-01-12 21:13:44 +05:30
|
|
|
"code.gitea.io/gitea/modules/structs"
|
2021-06-09 05:03:54 +05:30
|
|
|
"code.gitea.io/gitea/routers/web/explore"
|
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["PageIsAdminOrganizations"] = true
|
|
|
|
|
2023-05-06 19:34:55 +05:30
|
|
|
if ctx.FormString("sort") == "" {
|
2023-11-09 15:41:45 +05:30
|
|
|
ctx.SetFormString("sort", UserSearchDefaultAdminSort)
|
2023-05-06 19:34:55 +05:30
|
|
|
}
|
|
|
|
|
2021-11-24 15:19:20 +05:30
|
|
|
explore.RenderUserSearch(ctx, &user_model.SearchUserOptions{
|
2023-09-14 12:23:36 +05:30
|
|
|
Actor: ctx.Doer,
|
|
|
|
Type: user_model.UserTypeOrganization,
|
|
|
|
IncludeReserved: true, // administrator needs to list all acounts include reserved
|
2021-09-24 17:02:56 +05:30
|
|
|
ListOptions: db.ListOptions{
|
2020-01-25 00:30:29 +05:30
|
|
|
PageSize: setting.UI.Admin.OrgPagingNum,
|
|
|
|
},
|
|
|
|
Visible: []structs.VisibleType{structs.VisibleTypePublic, structs.VisibleTypeLimited, structs.VisibleTypePrivate},
|
2017-10-24 23:06:19 +05:30
|
|
|
}, tplOrgs)
|
2014-08-29 18:20:43 +05:30
|
|
|
}
|