2023-08-15 12:32:43 +00:00
|
|
|
// Copyright 2023 The Gitea Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
|
|
|
package swagger
|
|
|
|
|
|
|
|
import api "code.gitea.io/gitea/modules/structs"
|
|
|
|
|
|
|
|
// SecretList
|
|
|
|
// swagger:response SecretList
|
|
|
|
type swaggerResponseSecretList struct {
|
|
|
|
// in:body
|
|
|
|
Body []api.Secret `json:"body"`
|
|
|
|
}
|
2023-08-22 03:20:34 +00:00
|
|
|
|
|
|
|
// Secret
|
|
|
|
// swagger:response Secret
|
|
|
|
type swaggerResponseSecret struct {
|
|
|
|
// in:body
|
|
|
|
Body api.Secret `json:"body"`
|
|
|
|
}
|
2024-03-28 20:40:35 +00:00
|
|
|
|
|
|
|
// ActionVariable
|
|
|
|
// swagger:response ActionVariable
|
|
|
|
type swaggerResponseActionVariable struct {
|
|
|
|
// in:body
|
|
|
|
Body api.ActionVariable `json:"body"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// VariableList
|
|
|
|
// swagger:response VariableList
|
|
|
|
type swaggerResponseVariableList struct {
|
|
|
|
// in:body
|
|
|
|
Body []api.ActionVariable `json:"body"`
|
|
|
|
}
|