improvements

This commit is contained in:
Lunny Xiao
2026-05-03 14:32:34 +05:30
committed by beardev-in
parent a1d1274101
commit d17a2b099a
5 changed files with 240 additions and 76 deletions
+6 -4
View File
@@ -47,8 +47,8 @@ type CreateProjectOption struct {
type EditProjectOption struct {
Title *string `json:"title,omitempty"`
Description *string `json:"description,omitempty"`
CardType *int `json:"card_type,omitempty"`
IsClosed *bool `json:"is_closed,omitempty"`
// Card type: 0=text_only, 1=images_and_text
CardType *int `json:"card_type,omitempty"`
}
// ProjectColumn represents a project column (board)
@@ -84,9 +84,11 @@ type EditProjectColumnOption struct {
Sorting *int `json:"sorting,omitempty"`
}
// AddIssueToProjectColumnOption represents options for adding issues to a project
// AddIssueToProjectColumnOption represents options for adding an issue to a project column
// swagger:model
type AddIssueToProjectColumnOption struct {
// required: true
IssueIDs []int64 `json:"issue_ids" binding:"Required"`
}
}