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>
50 lines
958 B
Go
50 lines
958 B
Go
// Copyright 2017 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package swagger
|
|
|
|
import (
|
|
api "forgejo.org/modules/structs"
|
|
)
|
|
|
|
// PublicKey
|
|
// swagger:response PublicKey
|
|
type swaggerResponsePublicKey struct {
|
|
// in:body
|
|
Body api.PublicKey `json:"body"`
|
|
}
|
|
|
|
// PublicKeyList
|
|
// swagger:response PublicKeyList
|
|
type swaggerResponsePublicKeyList struct {
|
|
// in:body
|
|
Body []api.PublicKey `json:"body"`
|
|
}
|
|
|
|
// GPGKey
|
|
// swagger:response GPGKey
|
|
type swaggerResponseGPGKey struct {
|
|
// in:body
|
|
Body api.GPGKey `json:"body"`
|
|
}
|
|
|
|
// GPGKeyList
|
|
// swagger:response GPGKeyList
|
|
type swaggerResponseGPGKeyList struct {
|
|
// in:body
|
|
Body []api.GPGKey `json:"body"`
|
|
}
|
|
|
|
// DeployKey
|
|
// swagger:response DeployKey
|
|
type swaggerResponseDeployKey struct {
|
|
// in:body
|
|
Body api.DeployKey `json:"body"`
|
|
}
|
|
|
|
// DeployKeyList
|
|
// swagger:response DeployKeyList
|
|
type swaggerResponseDeployKeyList struct {
|
|
// in:body
|
|
Body []api.DeployKey `json:"body"`
|
|
}
|