mirror of
https://github.com/go-gitea/gitea
synced 2025-07-15 23:17:19 +00:00
docs: create swagger api documentation for endpoints
This commit is contained in:
@@ -12,6 +12,14 @@ type Column struct {
|
||||
|
||||
// EditProjectColumnOption options for editing a project column
|
||||
type EditProjectColumnOption struct {
|
||||
Title string `binding:"MaxSize(100)"`
|
||||
Sorting int8
|
||||
Color string `binding:"MaxSize(7)"`
|
||||
}
|
||||
|
||||
// CreateProjectColumnOption options for creating a project column
|
||||
type CreateProjectColumnOption struct {
|
||||
// required:true
|
||||
Title string `binding:"Required;MaxSize(100)"`
|
||||
Sorting int8
|
||||
Color string `binding:"MaxSize(7)"`
|
||||
|
Reference in New Issue
Block a user