Properly calculate the number of open issues per label
This commit is contained in:
parent
cd8b43d984
commit
1f61340fa3
2 changed files with 41 additions and 0 deletions
|
@ -549,6 +549,7 @@ func UpdateIssueLabel(ctx *middleware.Context) {
|
|||
label.NumClosedIssues--
|
||||
}
|
||||
}
|
||||
|
||||
if err = models.UpdateLabel(label); err != nil {
|
||||
ctx.Handle(500, "issue.UpdateIssueLabel(UpdateLabel)", err)
|
||||
return
|
||||
|
@ -767,6 +768,24 @@ func Comment(ctx *middleware.Context) {
|
|||
return
|
||||
}
|
||||
|
||||
if err = issue.GetLabels(); err != nil {
|
||||
send(500, nil, err)
|
||||
return
|
||||
}
|
||||
|
||||
for _, label := range issue.Labels {
|
||||
if issue.IsClosed {
|
||||
label.NumClosedIssues++
|
||||
} else {
|
||||
label.NumClosedIssues--
|
||||
}
|
||||
|
||||
if err = models.UpdateLabel(label); err != nil {
|
||||
send(500, nil, err)
|
||||
return
|
||||
}
|
||||
}
|
||||
|
||||
// Change open/closed issue counter for the associated milestone
|
||||
if issue.MilestoneId > 0 {
|
||||
if err = models.ChangeMilestoneIssueStats(issue); err != nil {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue