PHP_SMART_HOME_V3/app/api/RoomsApi.php

14 lines
184 B
PHP

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