Fool proving registration

This commit is contained in:
JonatanRek 2019-10-09 10:53:52 +02:00
parent 1b76e1907d
commit 35bd6b8d6a
1 changed files with 6 additions and 1 deletions

View File

@ -104,7 +104,12 @@ if ($token == null || $token == "") {
//Vstupní Checky
if (!DeviceManager::registeret($token)) {
DeviceManager::create($token, $token);
$deviceId = DeviceManager::create($token, $token);
foreach ($values as $key => $value) {
if (!SubDeviceManager::getSubDeviceByMaster($deviceId, $key)) {
SubDeviceManager::create($deviceId, $key, UNITS[$key]);
}
}
header("HTTP/1.1 401 Unauthorized");
echo json_encode(array(
'state' => 'unsuccess',