2017-11-13 00:02:25 -07:00
|
|
|
// Copyright 2017 The Gitea Authors. All rights reserved.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2017-11-13 00:02:25 -07:00
|
|
|
|
|
|
|
package swagger
|
|
|
|
|
|
|
|
import (
|
2019-05-11 04:21:34 -06:00
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
2017-11-13 00:02:25 -07:00
|
|
|
)
|
|
|
|
|
2018-05-31 05:13:55 -06:00
|
|
|
// Organization
|
2017-11-13 00:02:25 -07:00
|
|
|
// swagger:response Organization
|
|
|
|
type swaggerResponseOrganization struct {
|
|
|
|
// in:body
|
|
|
|
Body api.Organization `json:"body"`
|
|
|
|
}
|
|
|
|
|
2018-05-31 05:13:55 -06:00
|
|
|
// OrganizationList
|
2017-11-13 00:02:25 -07:00
|
|
|
// swagger:response OrganizationList
|
|
|
|
type swaggerResponseOrganizationList struct {
|
|
|
|
// in:body
|
|
|
|
Body []api.Organization `json:"body"`
|
|
|
|
}
|
|
|
|
|
2018-05-31 05:13:55 -06:00
|
|
|
// Team
|
2017-11-13 00:02:25 -07:00
|
|
|
// swagger:response Team
|
|
|
|
type swaggerResponseTeam struct {
|
|
|
|
// in:body
|
|
|
|
Body api.Team `json:"body"`
|
|
|
|
}
|
|
|
|
|
2018-05-31 05:13:55 -06:00
|
|
|
// TeamList
|
2017-11-13 00:02:25 -07:00
|
|
|
// swagger:response TeamList
|
|
|
|
type swaggerResponseTeamList struct {
|
|
|
|
// in:body
|
|
|
|
Body []api.Team `json:"body"`
|
|
|
|
}
|
2021-10-12 04:47:19 -06:00
|
|
|
|
|
|
|
// OrganizationPermissions
|
|
|
|
// swagger:response OrganizationPermissions
|
|
|
|
type swaggerResponseOrganizationPermissions struct {
|
|
|
|
// in:body
|
|
|
|
Body api.OrganizationPermissions `json:"body"`
|
|
|
|
}
|