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

changeset 292
703591e739f4
parent 284
671c1c8fbf1c
     1.1 --- a/src/main/kotlin/de/uapcore/lightpit/dao/DataAccessObject.kt	Mon Oct 30 10:06:22 2023 +0100
     1.2 +++ b/src/main/kotlin/de/uapcore/lightpit/dao/DataAccessObject.kt	Mon Oct 30 14:44:36 2023 +0100
     1.3 @@ -74,7 +74,14 @@
     1.4      fun mergeCommitRefs(refs: List<CommitRef>)
     1.5  
     1.6      fun listIssues(project: Project, includeDone: Boolean): List<Issue>
     1.7 -    fun listIssues(project: Project, includeDone: Boolean, version: Version?, component: Component?): List<Issue>
     1.8 +    fun listIssues(
     1.9 +        project: Project,
    1.10 +        includeDone: Boolean,
    1.11 +        specificVersion: Boolean,
    1.12 +        version: Version?,
    1.13 +        specificComponent: Boolean,
    1.14 +        component: Component?
    1.15 +    ): List<Issue>
    1.16      fun findIssue(id: Int): Issue?
    1.17      fun insertIssue(issue: Issue): Int
    1.18      fun updateIssue(issue: Issue)

mercurial