From e7a52ed93ff83b863571d153a29048718a617c4c Mon Sep 17 00:00:00 2001 From: Anna Larch Date: Fri, 19 Apr 2024 18:21:51 +0200 Subject: [PATCH] fix(appointments): simplify booking response Signed-off-by: Anna Larch --- lib/Controller/BookingController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Controller/BookingController.php b/lib/Controller/BookingController.php index f1142d9194..f06618cb19 100644 --- a/lib/Controller/BookingController.php +++ b/lib/Controller/BookingController.php @@ -215,7 +215,7 @@ public function bookSlot(int $appointmentConfigId, ); } - return JsonResponse::success($booking); + return JsonResponse::success(); } /**