From c3add695d230c8c8d38a569a49a9b07ec567bbe6 Mon Sep 17 00:00:00 2001 From: yaso Date: Tue, 15 Oct 2024 11:22:05 +0200 Subject: [PATCH] update appointment notification message and title. --- .../patient_profile/builder/build_patient_list.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Frontend/patient_manager/lib/mih_packages/patient_profile/builder/build_patient_list.dart b/Frontend/patient_manager/lib/mih_packages/patient_profile/builder/build_patient_list.dart index d6335e09..2aa21171 100644 --- a/Frontend/patient_manager/lib/mih_packages/patient_profile/builder/build_patient_list.dart +++ b/Frontend/patient_manager/lib/mih_packages/patient_profile/builder/build_patient_list.dart @@ -92,9 +92,9 @@ class _BuildPatientsListState extends State { }, body: jsonEncode({ "app_id": widget.patients[index].app_id, - "notification_type": "Access Review", + "notification_type": "New Appointment Booked", "notification_message": - "A new Access Review request has been sent by ${widget.arguments.business!.Name}", + "A new Appointment has been booked by ${widget.arguments.business!.Name} for the ${dateController.text} ${timeController.text}. Please approve the Access Review request.", "action_path": "/access-review", }), );