diff options
author | Mario <mario@mariovavti.com> | 2019-06-26 09:21:09 +0200 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2019-06-26 09:21:09 +0200 |
commit | ad8ad0ccd78db4f33c308a183809883cd4002a5c (patch) | |
tree | 3c847e75facefdc69bd22ae15dd944d539f41089 /include | |
parent | 1cf012650b2b4c25a34221b0fcca6bc18710108b (diff) | |
parent | 07f850ed15a0af3037b96c0849b949b0bfac791b (diff) | |
download | volse-hubzilla-ad8ad0ccd78db4f33c308a183809883cd4002a5c.tar.gz volse-hubzilla-ad8ad0ccd78db4f33c308a183809883cd4002a5c.tar.bz2 volse-hubzilla-ad8ad0ccd78db4f33c308a183809883cd4002a5c.zip |
Merge branch 'fix-item_export-api-path' into 'dev'
Make export_page API endpoint match ZAP
See merge request hubzilla/core!1683
Diffstat (limited to 'include')
-rw-r--r-- | include/api_zot.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/api_zot.php b/include/api_zot.php index b332aea71..287720484 100644 --- a/include/api_zot.php +++ b/include/api_zot.php @@ -6,8 +6,8 @@ api_register_func('api/export/basic','api_export_basic', true); api_register_func('api/red/channel/export/basic','api_export_basic', true); api_register_func('api/z/1.0/channel/export/basic','api_export_basic', true); - api_register_func('api/red/item/export/page','api_item_export_page', true); - api_register_func('api/z/1.0/item/export/page','api_item_export_page', true); + api_register_func('api/red/item/export_page','api_item_export_page', true); + api_register_func('api/z/1.0/item/export_page','api_item_export_page', true); api_register_func('api/red/channel/list','api_channel_list', true); api_register_func('api/z/1.0/channel/list','api_channel_list', true); api_register_func('api/red/channel/stream','api_channel_stream', true); |