Skip to content
This repository was archived by the owner on Mar 24, 2023. It is now read-only.

Commit 00ca4f0

Browse files
committed
fixed a bug in the alert update output.
1 parent 4140ac6 commit 00ca4f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SCOM API/Controllers/SCOMAlertController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ public IHttpActionResult UpdateAlertById([FromUri()]Guid Id, [FromBody()] SCOMAl
248248

249249
}
250250
// creating OK response
251-
return Ok(new { message = "Updated ticket", ticketId = Id.ToString() });
251+
return Ok(new { message = "Alert updated", alertId = Id.ToString() });
252252

253253
}
254254

0 commit comments

Comments
 (0)