Removed the delete_unavailable method
This commit is contained in:
parent
8b02cbb369
commit
e29c2198de
3 changed files with 3 additions and 15 deletions
|
@ -556,7 +556,7 @@ class Backend_api extends EA_Controller {
|
|||
|
||||
$provider = $this->providers_model->find($unavailable['id_users_provider']);
|
||||
|
||||
$this->appointments_model->delete_unavailable($unavailable['id']);
|
||||
$this->appointments_model->delete($unavailable['id']);
|
||||
|
||||
// Google Sync
|
||||
try
|
||||
|
|
|
@ -137,7 +137,7 @@ class Unavailabilities extends API_V1_Controller {
|
|||
}
|
||||
catch (Throwable $e)
|
||||
{
|
||||
$this->handle_exception($exception);
|
||||
$this->handle_exception($e);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -150,7 +150,7 @@ class Unavailabilities extends API_V1_Controller {
|
|||
{
|
||||
try
|
||||
{
|
||||
$result = $this->appointments_model->delete_unavailable($id);
|
||||
$result = $this->appointments_model->delete($id);
|
||||
|
||||
$response = new Response([
|
||||
'code' => 200,
|
||||
|
|
|
@ -352,18 +352,6 @@ class Appointments_model extends EA_Model {
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove an existing unavailable from the database.
|
||||
*
|
||||
* @param int $unavailable_id Record id to be deleted.
|
||||
*
|
||||
* @return bool Returns the delete operation result.
|
||||
*/
|
||||
public function delete_unavailable(int $unavailable_id): bool
|
||||
{
|
||||
return $this->db->delete('appointments', ['id' => $unavailable_id]);
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove all the Google Calendar event IDs from appointment records.
|
||||
*
|
||||
|
|
Loading…
Reference in a new issue