GetLabelsByIssueID returns all labels that belong to given issue by ID.
(issueID int64)
| 209 | |
| 210 | // GetLabelsByIssueID returns all labels that belong to given issue by ID. |
| 211 | func GetLabelsByIssueID(issueID int64) ([]*Label, error) { |
| 212 | return getLabelsByIssueID(x, issueID) |
| 213 | } |
| 214 | |
| 215 | func updateLabel(e Engine, l *Label) error { |
| 216 | _, err := e.ID(l.ID).AllCols().Update(l) |
no test coverage detected