Skip to content
This repository has been archived by the owner on Apr 7, 2024. It is now read-only.

Commit

Permalink
Added IP camera as device type
Browse files Browse the repository at this point in the history
  • Loading branch information
jokob-sk committed Oct 2, 2022
1 parent 32d5455 commit dc5deaa
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions front/php/server/devices.php
Original file line number Diff line number Diff line change
Expand Up @@ -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" )
Expand All @@ -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"
Expand Down

0 comments on commit dc5deaa

Please sign in to comment.