Network Setting

This commit is contained in:
JonatanRek
2019-11-28 14:34:32 +01:00
parent b2e4da37bf
commit 563999e92d
3 changed files with 8 additions and 2 deletions

View File

@@ -3,8 +3,8 @@ class RoomManager{
public static $rooms;
function getDefaultRoomId() {
$defaultRoom = Db::loadOne("SELECT id FROM rooms WHERE default = 1");
return $defaultRoom['id'];
$defaultRoom = Db::loadOne("SELECT room_id FROM rooms WHERE 'default' = 1");
return $defaultRoom['room_id'];
}
function getAllRooms () {

View File

@@ -158,6 +158,8 @@ class Home extends Template
'token' => $deviceData['token'],
'type' => $deviceData['type'],
'ip' => $deviceData['ip_address'],
'subnet' => $deviceData['subnet'],
'gateway' => $deviceData['gateway'],
'sleepTime' => $deviceData['sleep_time'],
'approved' => $deviceData['approved'],
'permission' => $permissionArray,