From 76b54a468f2744c510675e228904014e6df9282f Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Sun, 22 Dec 2019 18:43:53 -0500 Subject: [PATCH] use left join instead of inner join when listing monitors --- web/api/app/Controller/MonitorsController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/api/app/Controller/MonitorsController.php b/web/api/app/Controller/MonitorsController.php index 07167b33a..789307795 100644 --- a/web/api/app/Controller/MonitorsController.php +++ b/web/api/app/Controller/MonitorsController.php @@ -56,7 +56,7 @@ class MonitorsController extends AppController { 'joins' => array( array( 'table' => 'Groups_Monitors', - 'type' => 'inner', + 'type' => 'left', 'conditions' => array( 'Groups_Monitors.MonitorId = Monitor.Id', ),