From fdc7bfcc51a1eb599773145549fe79e521b56821 Mon Sep 17 00:00:00 2001 From: zach Date: Mon, 14 Jul 2008 04:09:49 -0400 Subject: Stubs for all Twitter-API methods darcs-hash:20080714080949-ca946-7372d114c1db9f48aa79f7bd8a5f67042da37ac4.gz --- actions/apiaccount.php | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 actions/apiaccount.php (limited to 'actions/apiaccount.php') diff --git a/actions/apiaccount.php b/actions/apiaccount.php new file mode 100644 index 000000000..ecbb88570 --- /dev/null +++ b/actions/apiaccount.php @@ -0,0 +1,44 @@ +. + */ + +if (!defined('LACONICA')) { exit(1); } + +# This naming convention looks real sick +class ApifavoritesAction extends Action { + + + function index($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