refactoring, added rooms api

This commit is contained in:
xinatorus
2020-05-12 19:41:46 +02:00
parent 3981d9551d
commit c2203b452a
20 changed files with 18 additions and 2 deletions

13
app/api/RoomsApi.php Normal file
View File

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