PHP_SMART_HOME_V3/app/api/DevicesApi.php

18 lines
235 B
PHP
Raw Normal View History

2020-04-24 19:54:25 +00:00
<?php
class DevicesApi extends ApiController{
2020-05-12 17:41:46 +00:00
public function default(){
2020-04-24 19:54:25 +00:00
$this->requireAuth();
$response = [];
// TODO: process the request
$this->response($response);
}
public function getDevicesByRoom($roomId){
}
}