This commit is contained in:
GamerClassN7
2021-01-04 16:51:34 +01:00
parent c4f36235ab
commit a3a87d39d2
2 changed files with 11 additions and 1 deletions

View File

@@ -12,6 +12,11 @@ class CronApi extends ApiController
$backupWorker = new DatabaseBackup();
$backupWorker->purge(5);
//Old Records Cleanup
foreach (SubDeviceManager::getAllSubDevices() as $key => $value) {
RecordManager::setHistory($value['subdevice_id']);
}
$this->response(['Value' => 'OK']);
}