From 641e9ff50811a993a2486f8b1c37e3235c64da1f Mon Sep 17 00:00:00 2001 From: zotlabs Date: Tue, 6 Dec 2016 20:34:23 -0800 Subject: api files improvements/fixes and documentation --- include/api_zot.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'include/api_zot.php') diff --git a/include/api_zot.php b/include/api_zot.php index a7a377bf4..35025f5f8 100644 --- a/include/api_zot.php +++ b/include/api_zot.php @@ -118,7 +118,13 @@ function api_attach_list($type) { logger('api_user: ' . api_user()); - json_return_and_die(attach_list_files(api_user(),get_observer_hash(),'','','','created asc')); + $hash = ((array_key_exists('filehash',$_REQUEST)) ? $_REQUEST['filehash'] : ''); + $filename = ((array_key_exists('filename',$_REQUEST)) ? $_REQUEST['filename'] : ''); + $filetype = ((array_key_exists('filetype',$_REQUEST)) ? $_REQUEST['filetype'] : ''); + $start = ((array_key_exists('start',$_REQUEST)) ? intval($_REQUEST['start']) : 0); + $records = ((array_key_exists('records',$_REQUEST)) ? intval($_REQUEST['records']) : 0); + + json_return_and_die(attach_list_files(api_user(),get_observer_hash(),$hash,$filename,$filetype,'created asc',$start,$records)); } -- cgit v1.2.3