diff --git a/api/application/controllers/PD_Controller.php b/api/application/controllers/PD_Controller.php index f09975ca..acb3fa7e 100644 --- a/api/application/controllers/PD_Controller.php +++ b/api/application/controllers/PD_Controller.php @@ -4611,7 +4611,10 @@ class PD_Controller extends REST_Controller { public function savePDPhotos_post() { $records = $this->post('records'); - echo "Called"; + $data['dataStatus'] = true; + $data['status'] = REST_Controller::HTTP_OK; + $data['records'] = $records; + $this->response($data,REST_Controller::HTTP_OK); }