(e Engine, issue *Issue, cols ...string)
| 417 | } |
| 418 | |
| 419 | func updateIssueCols(e Engine, issue *Issue, cols ...string) error { |
| 420 | cols = append(cols, "updated_unix") |
| 421 | _, err := e.ID(issue.ID).Cols(cols...).Update(issue) |
| 422 | return err |
| 423 | } |
| 424 | |
| 425 | // UpdateIssueCols only updates values of specific columns for given issue. |
| 426 | func UpdateIssueCols(issue *Issue, cols ...string) error { |
no test coverage detected