code.gitea.io/gitea@v1.22.3/routers/api/v1/swagger/action.go (about) 1 // Copyright 2023 The Gitea Authors. All rights reserved. 2 // SPDX-License-Identifier: MIT 3 4 package swagger 5 6 import api "code.gitea.io/gitea/modules/structs" 7 8 // SecretList 9 // swagger:response SecretList 10 type swaggerResponseSecretList struct { 11 // in:body 12 Body []api.Secret `json:"body"` 13 } 14 15 // Secret 16 // swagger:response Secret 17 type swaggerResponseSecret struct { 18 // in:body 19 Body api.Secret `json:"body"` 20 } 21 22 // ActionVariable 23 // swagger:response ActionVariable 24 type swaggerResponseActionVariable struct { 25 // in:body 26 Body api.ActionVariable `json:"body"` 27 } 28 29 // VariableList 30 // swagger:response VariableList 31 type swaggerResponseVariableList struct { 32 // in:body 33 Body []api.ActionVariable `json:"body"` 34 }