2017-11-13 08:02:25 +01:00
|
|
|
// Copyright 2017 The Gitea Authors. All rights reserved.
|
2022-11-27 19:20:29 +01:00
|
|
|
// SPDX-License-Identifier: MIT
|
2017-11-13 08:02:25 +01:00
|
|
|
|
|
|
|
package swagger
|
|
|
|
|
|
|
|
import (
|
2019-05-11 12:21:34 +02:00
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
2017-11-13 08:02:25 +01:00
|
|
|
)
|
|
|
|
|
2018-05-31 13:13:55 +02:00
|
|
|
// PublicKey
|
2017-11-13 08:02:25 +01:00
|
|
|
// swagger:response PublicKey
|
|
|
|
type swaggerResponsePublicKey struct {
|
|
|
|
// in:body
|
|
|
|
Body api.PublicKey `json:"body"`
|
|
|
|
}
|
|
|
|
|
2018-05-31 13:13:55 +02:00
|
|
|
// PublicKeyList
|
2017-11-13 08:02:25 +01:00
|
|
|
// swagger:response PublicKeyList
|
|
|
|
type swaggerResponsePublicKeyList struct {
|
|
|
|
// in:body
|
|
|
|
Body []api.PublicKey `json:"body"`
|
|
|
|
}
|
|
|
|
|
2018-05-31 13:13:55 +02:00
|
|
|
// GPGKey
|
2017-11-13 08:02:25 +01:00
|
|
|
// swagger:response GPGKey
|
|
|
|
type swaggerResponseGPGKey struct {
|
|
|
|
// in:body
|
|
|
|
Body api.GPGKey `json:"body"`
|
|
|
|
}
|
|
|
|
|
2018-05-31 13:13:55 +02:00
|
|
|
// GPGKeyList
|
2017-11-13 08:02:25 +01:00
|
|
|
// swagger:response GPGKeyList
|
|
|
|
type swaggerResponseGPGKeyList struct {
|
|
|
|
// in:body
|
|
|
|
Body []api.GPGKey `json:"body"`
|
|
|
|
}
|
|
|
|
|
2018-05-31 13:13:55 +02:00
|
|
|
// DeployKey
|
2017-11-13 08:02:25 +01:00
|
|
|
// swagger:response DeployKey
|
|
|
|
type swaggerResponseDeployKey struct {
|
|
|
|
// in:body
|
|
|
|
Body api.DeployKey `json:"body"`
|
|
|
|
}
|
|
|
|
|
2018-05-31 13:13:55 +02:00
|
|
|
// DeployKeyList
|
2017-11-13 08:02:25 +01:00
|
|
|
// swagger:response DeployKeyList
|
|
|
|
type swaggerResponseDeployKeyList struct {
|
|
|
|
// in:body
|
|
|
|
Body []api.DeployKey `json:"body"`
|
|
|
|
}
|