mirror of
https://github.com/moparisthebest/wallabag
synced 2024-12-18 05:32:23 -05:00
Use built-in json renderer
This commit is contained in:
parent
a43675b7c7
commit
723fce50b6
@ -6,7 +6,7 @@ $api->get('/', function () { return 'API home page'; });
|
||||
|
||||
$api->get('/entries', function () use ($app) {
|
||||
$entries = $app['entry_api']->getEntries();
|
||||
return json_encode($entries);
|
||||
return $app->json($entry, 200);
|
||||
});
|
||||
|
||||
return $api;
|
||||
|
Loading…
Reference in New Issue
Block a user