aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/api/controllers/GetLinksTest.php
Commit message (Collapse)AuthorAgeFilesLines
* Implements Tags endpoints for Shaarli's REST APIArthurHoaro2018-06-041-472/+0
| | | | | | | | | | | | Endpoints: * List All Tags [GET] * Get a tag [GET] * Update a tag [PUT] * Delete a tag [DELETE] Fixes #904 References shaarli/api-documentation#34
* wildcard tag search supportWilli Eggeling2017-08-301-0/+83
| | | | | | | - when searching for tags you can now include '*' as wildcard placeholder - new search reduces overall overhead when filtering for tags - fixed combination with description tag search ('#' prefix) - tests added
* Merge pull request #841 from ArthurHoaro/feature/search-no-tagArthurHoaro2017-05-251-2/+2
|\ | | | | Empty tag search will look for not tagged links
| * Empty tag search will look for not tagged linksArthurHoaro2017-05-251-2/+2
| | | | | | | | | | | | | | | | | | | | | | Fixes #784 From now, searching for tags with an empty value will return only not tagged links, with the search bar showing `x results [not tagged]`. Note that using the api, the searchtags request parameter must be set to `false` to get the same result. - [ ] Update API doc
* | Add history entries for API endpointArthurHoaro2017-05-071-0/+1
|/ | | | CHANGED: datetime is now store as an object in history store file
* application: introduce the Shaarli\Config namespaceVirtualTam2017-03-041-3/+3
| | | | | | | | | | | Namespaces have been introduced with the REST API, and should be generalized to the whole codebase to manage object scope and benefit from autoloading. See: - https://secure.php.net/manual/en/language.namespaces.php - http://www.php-fig.org/psr/psr-4/ Signed-off-by: VirtualTam <virtualtam@flibidi.net>
* REST API: implements getLink by ID serviceArthurHoaro2017-02-191-0/+388
See http://shaarli.github.io/api-documentation/#links-link-get