diff options
author | zach <zach@copley.name> | 2008-07-14 15:03:00 -0400 |
---|---|---|
committer | zach <zach@copley.name> | 2008-07-14 15:03:00 -0400 |
commit | 0bb522d5f4476f3da416f7dcd9bf5a50d29966e6 (patch) | |
tree | c5fdfc5b0ec5fb5b8d9f5302d94d20743ac059fc /actions/apiaccount.php | |
parent | fdc7bfcc51a1eb599773145549fe79e521b56821 (diff) |
All Twitter-compatible API calls answer now
darcs-hash:20080714190300-ca946-80e4dbdd0b5278d03cb00b0922cd69c695a166cb.gz
Diffstat (limited to 'actions/apiaccount.php')
-rw-r--r-- | actions/apiaccount.php | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/actions/apiaccount.php b/actions/apiaccount.php index ecbb88570..6d5766916 100644 --- a/actions/apiaccount.php +++ b/actions/apiaccount.php @@ -20,25 +20,36 @@ if (!defined('LACONICA')) { exit(1); } # This naming convention looks real sick -class ApifavoritesAction extends Action { +class ApiaccountAction extends Action { - function index($args, $apidata) { + function verify_credentials($args, $apidata) { parent::handle($args); common_server_error("API method under construction.", $code=501); exit(); } - function create($args, $apidata) { + function end_session($args, $apidata) { parent::handle($args); common_server_error("API method under construction.", $code=501); exit(); } - function destroy($args, $apidata) { + function update_location($args, $apidata) { parent::handle($args); common_server_error("API method under construction.", $code=501); exit(); } + function update_delivery_device($args, $apidata) { + parent::handle($args); + common_server_error("API method under construction.", $code=501); + exit(); + } + + function rate_limit_status($args, $apidata) { + parent::handle($args); + common_server_error("API method under construction.", $code=501); + exit(); + } }
\ No newline at end of file |