Execution Check

This commit is contained in:
JonatanRek
2020-05-26 21:42:39 +02:00
parent ae0d5b86ad
commit aef5b5116d
2 changed files with 15 additions and 0 deletions

View File

@@ -14,4 +14,17 @@ class WidgetApi extends ApiController{
$this->response(['value' => $response]);
}
public function check($subDeviceId){
//$this->requireAuth();
$response = null;
$lastRecord = RecordManager::getLastRecord($subDeviceId);
$response = [
'executet' => $lastRecord['execuded'],
'value' => $lastRecord['value'],
];
$this->response($response);
}
}