diff options
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 |