aboutsummaryrefslogtreecommitdiffhomepage
path: root/index.php
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2017-05-06 19:39:39 +0200
committerArthurHoaro <arthur@hoa.ro>2017-05-07 16:03:40 +0200
commit61d406933e7311a3eb3c0379f1dea8b790459722 (patch)
tree3585b6c24c808e75eec93978682bba1a051f7817 /index.php
parentb8fcb7d4403a344158ab5d2c8979bdd002e6001d (diff)
downloadShaarli-61d406933e7311a3eb3c0379f1dea8b790459722.tar.gz
Shaarli-61d406933e7311a3eb3c0379f1dea8b790459722.tar.zst
Shaarli-61d406933e7311a3eb3c0379f1dea8b790459722.zip
API: Get History endpoint
See http://shaarli.github.io/api-documentation/#links-history-get
Diffstat (limited to 'index.php')
-rw-r--r--index.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/index.php b/index.php
index 02fe2577..cddc9eeb 100644
--- a/index.php
+++ b/index.php
@@ -2253,6 +2253,7 @@ $app->group('/api/v1', function() {
2253 $this->post('/links', '\Shaarli\Api\Controllers\Links:postLink')->setName('postLink'); 2253 $this->post('/links', '\Shaarli\Api\Controllers\Links:postLink')->setName('postLink');
2254 $this->put('/links/{id:[\d]+}', '\Shaarli\Api\Controllers\Links:putLink')->setName('putLink'); 2254 $this->put('/links/{id:[\d]+}', '\Shaarli\Api\Controllers\Links:putLink')->setName('putLink');
2255 $this->delete('/links/{id:[\d]+}', '\Shaarli\Api\Controllers\Links:deleteLink')->setName('deleteLink'); 2255 $this->delete('/links/{id:[\d]+}', '\Shaarli\Api\Controllers\Links:deleteLink')->setName('deleteLink');
2256 $this->get('/history', '\Shaarli\Api\Controllers\History:getHistory')->setName('getHistory');
2256})->add('\Shaarli\Api\ApiMiddleware'); 2257})->add('\Shaarli\Api\ApiMiddleware');
2257 2258
2258$response = $app->run(true); 2259$response = $app->run(true);