aboutsummaryrefslogtreecommitdiffhomepage
path: root/application/api/exceptions
Commit message (Collapse)AuthorAgeFilesLines
* Apply PHP Code Beautifier on source code for linter automatic fixesArthurHoaro2020-11-092-2/+2
|
* Optimize and cleanup importsVirtualTam2019-01-132-4/+0
| | | | Signed-off-by: VirtualTam <virtualtam@flibidi.net>
* lint: apply phpcbf to application/VirtualTam2018-12-023-5/+5
| | | | Signed-off-by: VirtualTam <virtualtam@flibidi.net>
* Implements Tags endpoints for Shaarli's REST APIArthurHoaro2018-06-041-0/+32
| | | | | | | | | | | | Endpoints: * List All Tags [GET] * Get a tag [GET] * Update a tag [PUT] * Delete a tag [DELETE] Fixes #904 References shaarli/api-documentation#34
* REST API: implements getLink by ID serviceArthurHoaro2017-02-191-0/+32
| | | | See http://shaarli.github.io/api-documentation/#links-link-get
* REST API structure using Slim frameworkArthurHoaro2016-12-154-0/+149
* REST API routes are handle by Slim. * Every API controller go through ApiMiddleware which handles security. * First service implemented `/info`, for tests purpose.