fix: severity on incident POST creation (#20881)

This commit is contained in:
Teddy 2025-04-22 15:40:39 +02:00 committed by GitHub
parent 49cbcfb73b
commit 94728cb689
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -23,6 +23,7 @@ public class TestCaseResolutionStatusMapper
.withTestCaseResolutionStatusDetails(create.getTestCaseResolutionStatusDetails())
.withUpdatedBy(userEntity.getEntityReference())
.withUpdatedAt(System.currentTimeMillis())
.withTestCaseReference(testCaseEntity.getEntityReference());
.withTestCaseReference(testCaseEntity.getEntityReference())
.withSeverity(create.getSeverity());
}
}