UpdateIssueCols only updates values of specific columns for given issue.
(issue *Issue, cols ...string)
| 424 | |
| 425 | // UpdateIssueCols only updates values of specific columns for given issue. |
| 426 | func UpdateIssueCols(issue *Issue, cols ...string) error { |
| 427 | return updateIssueCols(x, issue, cols...) |
| 428 | } |
| 429 | |
| 430 | func (issue *Issue) changeStatus(e *xorm.Session, doer *User, repo *Repository, isClosed bool) (err error) { |
| 431 | // Nothing should be performed if current status is same as target status |
no test coverage detected