2014-08-29 12:50:43 +00:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
2020-01-24 19:00:29 +00:00
|
|
|
// Copyright 2020 The Gitea Authors.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2014-08-29 12:50:43 +00:00
|
|
|
|
|
|
|
package admin
|
|
|
|
|
|
|
|
import (
|
2021-09-24 11:32:56 +00:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2021-11-24 09:49:20 +00:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2016-11-10 16:24:48 +00:00
|
|
|
"code.gitea.io/gitea/modules/base"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2020-01-12 15:43:44 +00:00
|
|
|
"code.gitea.io/gitea/modules/structs"
|
2021-06-08 23:33:54 +00:00
|
|
|
"code.gitea.io/gitea/routers/web/explore"
|
2014-08-29 12:50:43 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2016-11-21 03:21:24 +00:00
|
|
|
tplOrgs base.TplName = "admin/org/list"
|
2014-08-29 12:50:43 +00:00
|
|
|
)
|
|
|
|
|
2016-11-21 03:21:24 +00:00
|
|
|
// Organizations show all the organizations
|
2016-03-11 16:56:52 +00:00
|
|
|
func Organizations(ctx *context.Context) {
|
2015-09-25 17:54:52 +00:00
|
|
|
ctx.Data["Title"] = ctx.Tr("admin.organizations")
|
2014-08-29 12:50:43 +00:00
|
|
|
ctx.Data["PageIsAdminOrganizations"] = true
|
|
|
|
|
2023-05-06 14:04:55 +00:00
|
|
|
if ctx.FormString("sort") == "" {
|
|
|
|
ctx.SetFormString("sort", explore.UserSearchDefaultAdminSort)
|
|
|
|
}
|
|
|
|
|
2021-11-24 09:49:20 +00:00
|
|
|
explore.RenderUserSearch(ctx, &user_model.SearchUserOptions{
|
2022-03-22 07:03:22 +00:00
|
|
|
Actor: ctx.Doer,
|
2021-11-24 09:49:20 +00:00
|
|
|
Type: user_model.UserTypeOrganization,
|
2021-09-24 11:32:56 +00:00
|
|
|
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},
|
2017-10-24 17:36:19 +00:00
|
|
|
}, tplOrgs)
|
2014-08-29 12:50:43 +00:00
|
|
|
}
|