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