aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/api/controllers/links/GetLinksTest.php
Commit message (Collapse)AuthorAgeFilesLines
* New plugin hook: ability to add custom filters to Shaarli search engineArthurHoaro2021-02-041-1/+9
| | | | | | | A new plugin hook has been added: hook_test_filter_search_entry This hook allows to filter out bookmark with custom plugin code when a search is performed. Related to #143
* add search highlight unit testsArthurHoaro2020-10-161-1/+1
|
* Add mutex on datastore I/O operationsArthurHoaro2020-10-131-1/+3
| | | | | | To make sure that there is no concurrent operation on the datastore file. Fixes #1132
* Compatibility with PHPUnit 9ArthurHoaro2020-09-291-1/+1
|
* Comply with PHPUnit V8: setup/teardown functions must return voidArthurHoaro2020-09-261-2/+2
|
* Fix basePath in unit tests reference DBArthurHoaro2020-07-281-1/+1
|
* Add and update unit test for the new system (Bookmark + Service)ArthurHoaro2020-01-181-5/+10
| | | | See #1307
* Optimize and cleanup importsVirtualTam2019-01-131-5/+5
| | | | Signed-off-by: VirtualTam <virtualtam@flibidi.net>
* namespacing: \Shaarli\Bookmark\LinkDBVirtualTam2019-01-121-3/+3
| | | | Signed-off-by: VirtualTam <virtualtam@flibidi.net>
* Add a button to set links as stickyArthurHoaro2018-10-061-9/+12
| | | | | | Meaning that they always appear on top of all links Fixes #186
* Implements Tags endpoints for Shaarli's REST APIArthurHoaro2018-06-041-0/+472
Endpoints: * List All Tags [GET] * Get a tag [GET] * Update a tag [PUT] * Delete a tag [DELETE] Fixes #904 References shaarli/api-documentation#34