PaperBag/www/api/v2/space/get.php

24 lines
434 B
PHP

<?php
class GetSpacesApi extends Api {
protected $methods = [
"GET" => [
[
"name" => "search",
"keyword" => "q",
"type" => VERIFY_STRING
]
]
];
function execute(){
$this->result = PlanSpace::getUserSpaces();
$this->success = true;
$this->message = "OK";
}
}
$request = new GetSpacesApi();