src/main/kotlin/de/uapcore/lightpit/entities/IssueHistoryEntry.kt

changeset 241
1ca4f27cefe8
parent 239
9365c7fb0240
child 242
b7f3e972b13c
     1.1 --- a/src/main/kotlin/de/uapcore/lightpit/entities/IssueHistoryEntry.kt	Sat Nov 27 11:04:23 2021 +0100
     1.2 +++ b/src/main/kotlin/de/uapcore/lightpit/entities/IssueHistoryEntry.kt	Sat Nov 27 12:12:20 2021 +0100
     1.3 @@ -39,10 +39,26 @@
     1.4      val subject: String,
     1.5      val description: String,
     1.6      val assignee: String,
     1.7 -    val assigneeUsername: String,
     1.8      val eta: Date?,
     1.9      val affected: String,
    1.10      val resolved: String,
    1.11  )
    1.12  
    1.13 -class IssueHistoryEntry(val time: Timestamp, val type: IssueHistoryType, val data: IssueHistoryData)
    1.14 \ No newline at end of file
    1.15 +class IssueCommentHistoryData(
    1.16 +    val commentid: Int,
    1.17 +    val comment: String
    1.18 +)
    1.19 +
    1.20 +class IssueHistoryEntry(
    1.21 +    val time: Timestamp,
    1.22 +    val type: IssueHistoryType,
    1.23 +    val currentAssignee: String?,
    1.24 +    val data: IssueHistoryData
    1.25 +)
    1.26 +
    1.27 +class IssueCommentHistoryEntry(
    1.28 +    val time: Timestamp,
    1.29 +    val type: IssueHistoryType,
    1.30 +    val currentAssignee: String?,
    1.31 +    val data: IssueCommentHistoryData
    1.32 +)
    1.33 \ No newline at end of file

mercurial