src/main/kotlin/de/uapcore/lightpit/dao/DataAccessObject.kt

changeset 239
9365c7fb0240
parent 235
4258b9e010ae
child 241
1ca4f27cefe8
equal deleted inserted replaced
238:1d48b38ca349 239:9365c7fb0240
80 fun updateComment(issueComment: IssueComment) 80 fun updateComment(issueComment: IssueComment)
81 81
82 fun insertHistoryEvent(issue: Issue, newId: Int = 0) 82 fun insertHistoryEvent(issue: Issue, newId: Int = 0)
83 fun insertHistoryEvent(issueComment: IssueComment, newId: Int = 0) 83 fun insertHistoryEvent(issueComment: IssueComment, newId: Int = 0)
84 84
85 /**
86 * Lists the issue history of the project with [projectId] for the past [days].
87 */
85 fun listIssueHistory(projectId: Int, days: Int): List<IssueHistoryEntry> 88 fun listIssueHistory(projectId: Int, days: Int): List<IssueHistoryEntry>
86 } 89 }

mercurial