mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-10-10 19:32:02 +00:00
refactor and add e2e js tests
This commit is contained in:
parent
922cd52f1b
commit
1d0cff2368
7 changed files with 139 additions and 67 deletions
|
@ -82,6 +82,15 @@ type Issue struct {
|
|||
PinOrder int `json:"pin_order"`
|
||||
}
|
||||
|
||||
type IssueSuggestion struct {
|
||||
Index int64 `json:"number"`
|
||||
State StateType `json:"state"`
|
||||
Title string `json:"title"`
|
||||
IsPr bool `json:"is_pr"`
|
||||
HasMerged bool `json:"merged"`
|
||||
IsWorkInProgress bool `json:"draft"`
|
||||
}
|
||||
|
||||
// CreateIssueOption options to create one issue
|
||||
type CreateIssueOption struct {
|
||||
// required:true
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue