mirror of
https://codeberg.org/forgejo-aneksajo/forgejo-aneksajo.git
synced 2025-07-29 23:00:07 +02:00

**Backport:** https://codeberg.org/forgejo/forgejo/pulls/7337 - Massive replacement of changing `code.gitea.io/gitea` to `forgejo.org`. - Resolves forgejo/discussions#258 Co-authored-by: Gusted <postmaster@gusted.xyz> Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/7354 Reviewed-by: Gusted <gusted@noreply.codeberg.org> Co-authored-by: forgejo-backport-action <forgejo-backport-action@noreply.codeberg.org> Co-committed-by: forgejo-backport-action <forgejo-backport-action@noreply.codeberg.org>
43 lines
877 B
Go
43 lines
877 B
Go
// Copyright 2017 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package swagger
|
|
|
|
import (
|
|
api "forgejo.org/modules/structs"
|
|
)
|
|
|
|
// Organization
|
|
// swagger:response Organization
|
|
type swaggerResponseOrganization struct {
|
|
// in:body
|
|
Body api.Organization `json:"body"`
|
|
}
|
|
|
|
// OrganizationList
|
|
// swagger:response OrganizationList
|
|
type swaggerResponseOrganizationList struct {
|
|
// in:body
|
|
Body []api.Organization `json:"body"`
|
|
}
|
|
|
|
// Team
|
|
// swagger:response Team
|
|
type swaggerResponseTeam struct {
|
|
// in:body
|
|
Body api.Team `json:"body"`
|
|
}
|
|
|
|
// TeamList
|
|
// swagger:response TeamList
|
|
type swaggerResponseTeamList struct {
|
|
// in:body
|
|
Body []api.Team `json:"body"`
|
|
}
|
|
|
|
// OrganizationPermissions
|
|
// swagger:response OrganizationPermissions
|
|
type swaggerResponseOrganizationPermissions struct {
|
|
// in:body
|
|
Body api.OrganizationPermissions `json:"body"`
|
|
}
|