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

changeset 241
1ca4f27cefe8
parent 239
9365c7fb0240
child 242
b7f3e972b13c
equal deleted inserted replaced
240:7303812a4424 241:1ca4f27cefe8
84 84
85 /** 85 /**
86 * Lists the issue history of the project with [projectId] for the past [days]. 86 * Lists the issue history of the project with [projectId] for the past [days].
87 */ 87 */
88 fun listIssueHistory(projectId: Int, days: Int): List<IssueHistoryEntry> 88 fun listIssueHistory(projectId: Int, days: Int): List<IssueHistoryEntry>
89
90 /**
91 * Lists the issue comment history of the project with [projectId] for the past [days].
92 */
93 fun listIssueCommentHistory(projectId: Int, days: Int): List<IssueCommentHistoryEntry>
89 } 94 }

mercurial