mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-04-06 00:32:12 +02:00
refactor: Update ProbeMonitorResponseService to include remediation notes
This commit updates the ProbeMonitorResponseService class to include a check for the presence of remediation notes in the criteriaIncident object. If remediation notes are provided, they are assigned to the incident object. This change enhances the functionality of the ProbeMonitorResponseService by allowing the storage and retrieval of remediation notes for incidents.
This commit is contained in:
@@ -750,7 +750,7 @@ export default class ProbeMonitorResponseService {
|
||||
).probeId;
|
||||
}
|
||||
|
||||
if(criteriaIncident.remediationNotes){
|
||||
if (criteriaIncident.remediationNotes) {
|
||||
incident.remediationNotes = criteriaIncident.remediationNotes;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user