From b56c3495f9fee409c90b44bc6611186beb46e197 Mon Sep 17 00:00:00 2001 From: Alex Tselegidis Date: Sun, 10 Jul 2016 13:24:05 +0200 Subject: [PATCH] Updated delete messages in other API controllers. --- src/application/controllers/api/v1/Appointments.php | 2 +- src/application/controllers/api/v1/Customers.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/application/controllers/api/v1/Appointments.php b/src/application/controllers/api/v1/Appointments.php index 3bea4dfb..1f0f2faf 100644 --- a/src/application/controllers/api/v1/Appointments.php +++ b/src/application/controllers/api/v1/Appointments.php @@ -136,7 +136,7 @@ class Appointments extends API_V1_Controller { $response = new Response([ 'code' => 200, - 'message' => 'Appointment was deleted successfully!' + 'message' => 'Record was deleted successfully!' ]); $response->output(); diff --git a/src/application/controllers/api/v1/Customers.php b/src/application/controllers/api/v1/Customers.php index e84e88d8..5cc63da1 100644 --- a/src/application/controllers/api/v1/Customers.php +++ b/src/application/controllers/api/v1/Customers.php @@ -136,7 +136,7 @@ class Customers extends API_V1_Controller { $response = new Response([ 'code' => 200, - 'message' => 'Appointment was deleted successfully!' + 'message' => 'Record was deleted successfully!' ]); $response->output();