mirror of https://github.com/go-gitea/gitea
Git with a cup of tea, painless self-hosted git service
Mirror for internal git.with.parts use
https://git.with.parts
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
388 B
19 lines
388 B
# type Milestone struct {
|
|
# ID int64 `xorm:"pk autoincr"`
|
|
# IsClosed bool
|
|
# NumIssues int
|
|
# NumClosedIssues int
|
|
# Completeness int // Percentage(1-100).
|
|
# }
|
|
-
|
|
id: 1
|
|
is_closed: false
|
|
num_issues: 4
|
|
num_closed_issues: 2
|
|
completeness: 50
|
|
-
|
|
id: 2
|
|
is_closed: true
|
|
num_issues: 5
|
|
num_closed_issues: 5
|
|
completeness: 100
|
|
|