diff options
author | Florian Pritz <bluewind@xinu.at> | 2015-01-11 23:35:46 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2015-01-16 17:38:38 +0100 |
commit | 0bed4fd5c9f67b60173df6638dc524d7b833c4e1 (patch) | |
tree | 69653ccdf9e9dc90e8a370cb6a9471792c1cba18 /application/controllers/api | |
parent | 01c881fd2c0f0c701a83e135f2142c9db3052422 (diff) |
add some TODOs
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'application/controllers/api')
-rw-r--r-- | application/controllers/api/v1/file.php | 3 | ||||
-rw-r--r-- | application/controllers/api/v1/user.php | 5 |
2 files changed, 7 insertions, 1 deletions
diff --git a/application/controllers/api/v1/file.php b/application/controllers/api/v1/file.php index 515286462..56455c01e 100644 --- a/application/controllers/api/v1/file.php +++ b/application/controllers/api/v1/file.php @@ -50,6 +50,7 @@ class file extends \controllers\api\api_controller { public function get_config() { + // TODO: return more fields? return send_json_reply(array( "upload_max_size" => $this->config->item("upload_max_size"), "max_files_per_request" => intval(ini_get("max_file_uploads")), @@ -67,7 +68,7 @@ class file extends \controllers\api\api_controller { { $this->muser->require_access("apikey"); - + // TODO: implement } } # vim: set noet: diff --git a/application/controllers/api/v1/user.php b/application/controllers/api/v1/user.php index 831fdb883..4c2e5345d 100644 --- a/application/controllers/api/v1/user.php +++ b/application/controllers/api/v1/user.php @@ -21,4 +21,9 @@ class user extends \controllers\api\api_controller { $this->muser->require_access("full"); return send_json_reply(\service\user::apikeys($this->muser->get_userid())); } + + public function create_apikey() + { + // TODO: implement + } } |