Switch API to react to POST only.

This commit is contained in:
Lars Jung 2015-05-01 16:16:31 +02:00
parent 3360e4d167
commit af6c715a5b
3 changed files with 13 additions and 11 deletions

View file

@ -16,7 +16,7 @@ class Api {
public function apply() {
$action = Util::use_request_param("action");
Util::json_fail(100, "unsupported request", !in_array($action, $this->actions));
Util::json_fail(101, "unsupported action", !in_array($action, $this->actions));
$methodname = "on_${action}";
$this->$methodname();
@ -102,10 +102,6 @@ class Api {
$response["all_items"] = $this->app->get_all_items();
}
if (AS_ADMIN && count($_REQUEST)) {
$response["unused"] = $_REQUEST;
}
Util::json_exit($response);
}