mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 06:48:56 +00:00
25dc1556cd
This adds API that allows getting the Label templates of the Gitea Instance
64 lines
1.4 KiB
Go
64 lines
1.4 KiB
Go
// Copyright 2017 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package swagger
|
|
|
|
import (
|
|
api "code.gitea.io/gitea/modules/structs"
|
|
)
|
|
|
|
// ServerVersion
|
|
// swagger:response ServerVersion
|
|
type swaggerResponseServerVersion struct {
|
|
// in:body
|
|
Body api.ServerVersion `json:"body"`
|
|
}
|
|
|
|
// GitignoreTemplateList
|
|
// swagger:response GitignoreTemplateList
|
|
type swaggerResponseGitignoreTemplateList struct {
|
|
// in:body
|
|
Body []string `json:"body"`
|
|
}
|
|
|
|
// GitignoreTemplateInfo
|
|
// swagger:response GitignoreTemplateInfo
|
|
type swaggerResponseGitignoreTemplateInfo struct {
|
|
// in:body
|
|
Body api.GitignoreTemplateInfo `json:"body"`
|
|
}
|
|
|
|
// LicenseTemplateList
|
|
// swagger:response LicenseTemplateList
|
|
type swaggerResponseLicensesTemplateList struct {
|
|
// in:body
|
|
Body []api.LicensesTemplateListEntry `json:"body"`
|
|
}
|
|
|
|
// LicenseTemplateInfo
|
|
// swagger:response LicenseTemplateInfo
|
|
type swaggerResponseLicenseTemplateInfo struct {
|
|
// in:body
|
|
Body api.LicenseTemplateInfo `json:"body"`
|
|
}
|
|
|
|
// StringSlice
|
|
// swagger:response StringSlice
|
|
type swaggerResponseStringSlice struct {
|
|
// in:body
|
|
Body []string `json:"body"`
|
|
}
|
|
|
|
// LabelTemplateList
|
|
// swagger:response LabelTemplateList
|
|
type swaggerResponseLabelTemplateList struct {
|
|
// in:body
|
|
Body []string `json:"body"`
|
|
}
|
|
|
|
// LabelTemplateInfo
|
|
// swagger:response LabelTemplateInfo
|
|
type swaggerResponseLabelTemplateInfo struct {
|
|
// in:body
|
|
Body []api.LabelTemplate `json:"body"`
|
|
}
|