This repository has been archived on 2026-04-14. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
PHP_SMART_HOME_V3/app/api/PluginsApi.php
2020-10-26 00:01:30 +01:00

13 lines
185 B
PHP

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