Skip to content

Commit f724087

Browse files
giacomoaccursiandrea-acampora
authored andcommitted
chore: add pathParameter for surgery report integration request
1 parent 114e00a commit f724087

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/kotlin/infrastructure/api/ObdApiGatewayVerticle.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ class ObdApiGatewayVerticle(
3535
router.get("$endpoint/zones").handler(ZonesHandler(provider))
3636
router.get("$endpoint/surgery-reports").handler(SurgeryReportsArchiveHandler(provider))
3737
router.get("$endpoint/surgery-reports/:processId").handler(SurgeryReportInfoHandler(provider))
38-
router.patch("$endpoint/surgery-report-integration").handler(SurgeryReportIntegrationHandler(provider))
38+
router.patch("$endpoint/surgery-report-integration/:processId")
39+
.handler(SurgeryReportIntegrationHandler(provider))
3940
router.get("$endpoint/room-info/:roomId").handler(RoomInfoHandler(provider))
4041
router.get("$endpoint/process-info").handler(ProcessInfoHandler(provider))
4142
router.get("$endpoint/zone-hp-tracking-info").handler(ZoneHealthProfessionalTrackingHandler(provider))

0 commit comments

Comments
 (0)