Added support for the new "calendar/reschedule" callback

This commit is contained in:
Alex Tselegidis 2021-12-17 09:20:54 +01:00
parent 7b919e2c39
commit 5916ad47d1
1 changed files with 12 additions and 0 deletions

View File

@ -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.
*/