PHP_SMART_HOME_V3/app/api/DevicesApi.php
2020-05-16 17:18:27 +02:00

18 lines
235 B
PHP

<?php
class DevicesApi extends ApiController{
public function default(){
$this->requireAuth();
$response = [];
// TODO: process the request
$this->response($response);
}
public function getDevicesByRoom($roomId){
}
}