From 0bb522d5f4476f3da416f7dcd9bf5a50d29966e6 Mon Sep 17 00:00:00 2001 From: zach Date: Mon, 14 Jul 2008 15:03:00 -0400 Subject: All Twitter-compatible API calls answer now darcs-hash:20080714190300-ca946-80e4dbdd0b5278d03cb00b0922cd69c695a166cb.gz --- actions/apifavorites.php | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) (limited to 'actions/apifavorites.php') diff --git a/actions/apifavorites.php b/actions/apifavorites.php index e69de29bb..358079c86 100644 --- a/actions/apifavorites.php +++ b/actions/apifavorites.php @@ -0,0 +1,43 @@ +. + */ + +if (!defined('LACONICA')) { exit(1); } + +# This naming convention looks real sick +class ApifavoritesAction extends Action { + + function favorites($args, $apidata) { + parent::handle($args); + common_server_error("API method under construction.", $code=501); + exit(); + } + + function create($args, $apidata) { + parent::handle($args); + common_server_error("API method under construction.", $code=501); + exit(); + } + + function destroy($args, $apidata) { + parent::handle($args); + common_server_error("API method under construction.", $code=501); + exit(); + } + +} \ No newline at end of file -- cgit v1.2.3-54-g00ecf