From dc5deaab424bbb2946f0042bc995a9a0fea55592 Mon Sep 17 00:00:00 2001 From: "jokob.sk" Date: Sun, 2 Oct 2022 23:02:13 +1100 Subject: [PATCH] Added IP camera as device type --- front/php/server/devices.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/front/php/server/devices.php b/front/php/server/devices.php index f64ec217..3dbcd4ad 100644 --- a/front/php/server/devices.php +++ b/front/php/server/devices.php @@ -775,8 +775,8 @@ function getDeviceTypes() { FROM Devices WHERE dev_DeviceType NOT IN ("", "Smartphone", "Tablet", - "Laptop", "Mini PC", "PC", "Printer", "Server", "Singleboard Computer (SBC)", - "Game Console", "SmartTV", "TV Decoder", "Virtual Assistance", + "Laptop", "Mini PC", "PC", "Printer", "Server", "Singleboard Computer (SBC)", "NAS", + "Domotic", "IP Camera", "Game Console", "SmartTV", "TV Decoder", "Virtual Assistance", "Clock", "House Appliance", "Phone", "Radio", "AP", "Gateway", "Powerline", "Switch", "WLAN", "PLC", "Router","USB LAN Adapter", "USB WIFI Adapter" ) @@ -792,6 +792,7 @@ function getDeviceTypes() { UNION SELECT 2 as dev_Order, "NAS" UNION SELECT 3 as dev_Order, "Domotic" + UNION SELECT 3 as dev_Order, "IP Camera" UNION SELECT 3 as dev_Order, "Game Console" UNION SELECT 3 as dev_Order, "SmartTV" UNION SELECT 3 as dev_Order, "TV Decoder"