From 5916ad47d198f90d6b1a29fb8d9a7fe0fdd3475f Mon Sep 17 00:00:00 2001 From: Alex Tselegidis Date: Fri, 17 Dec 2021 09:20:54 +0100 Subject: [PATCH] Added support for the new "calendar/reschedule" callback --- application/controllers/Calendar.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/application/controllers/Calendar.php b/application/controllers/Calendar.php index 1b686f66..c0575786 100644 --- a/application/controllers/Calendar.php +++ b/application/controllers/Calendar.php @@ -109,6 +109,18 @@ class Calendar extends EA_Controller { ]); } + /** + * Render the calendar page and display the selected appointment. + * + * This method will call the "index" callback to handle the page rendering. + * + * @param string $appointment_hash Appointment hash. + */ + public function reschedule(string $appointment_hash) + { + $this->index($appointment_hash); + } + /** * Save appointment changes that are made from the backend calendar page. */