From 804493901b9d3cc03cc202a9a19791ae456c6abb Mon Sep 17 00:00:00 2001 From: KrugarValdes Date: Fri, 10 Oct 2025 10:30:09 +0600 Subject: [PATCH] fix: standardize API endpoints path and kiosk mode --- .../backend/feature/notifications/controller/KioskController.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/feature/notifications/src/main/kotlin/band/effective/office/backend/feature/notifications/controller/KioskController.kt b/backend/feature/notifications/src/main/kotlin/band/effective/office/backend/feature/notifications/controller/KioskController.kt index 032f658aa..63ebcbd3d 100644 --- a/backend/feature/notifications/src/main/kotlin/band/effective/office/backend/feature/notifications/controller/KioskController.kt +++ b/backend/feature/notifications/src/main/kotlin/band/effective/office/backend/feature/notifications/controller/KioskController.kt @@ -21,7 +21,7 @@ import org.springframework.web.bind.annotation.* * REST controller for managing kiosk mode. */ @RestController -@RequestMapping("/api/v1/kiosk") +@RequestMapping("/v1/kiosk") @Tag(name = "Kiosk", description = "API for managing kiosk mode") class KioskController( private val notificationSender: INotificationSender,