aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/front/controller/admin/ManageShaareControllerTest/SaveBookmarkTest.php
Commit message (Collapse)AuthorAgeFilesLines
* Feature: bulk creation of bookmarksArthurHoaro2020-10-271-369/+0
| | | | | | | | | | | | | | | | | | | | | | | | | This changes creates a new form in addlink page allowing to create multiple bookmarks at once more easily. It focuses on re-using as much existing code and template component as possible. These changes includes: - a new form in addlink (hidden behind a button by default), containing a text area for URL, and tags/private status to apply to created links - this form displays a new template called editlink.batch, itself including editlink template multiple times - User interation in this new templates are handle by a new JS script (shaare-batch.js) making AJAX requests, and therefore does not need page reloading - ManageShaareController has been split into 3 distinct controllers: + ShaareAdd: displays addlink template + ShaareManage: various operation applied on existing shaares (change visibility, pin, deletion, etc.) + ShaarePublish: handles creation/edit forms and saving Shaare's form - Updated translations Fixes #137
* Asynchronous retrieval of bookmark's thumbnailsArthurHoaro2020-10-201-2/+53
| | | | | | | | | This feature is based general.enable_async_metadata setting and works with existing metadata.js file. The script is compatible with any template: - the thumbnail div bloc must have attribute - the bookmark bloc must have attribute with the bookmark ID as value Fixes #1564
* Add strict types for bookmarks managementArthurHoaro2020-10-131-5/+15
| | | | | | | | Parameters typing and using strict types overall increase the codebase quality by enforcing the a given parameter will have the expected type. It also removes the need to unnecessary unit tests checking methods behavior with invalid input.
* Merge pull request #1575 from ArthurHoaro/feature/php8ArthurHoaro2020-10-031-19/+21
|\
| * Compatibility with PHPUnit 9ArthurHoaro2020-09-291-19/+21
| |
* | Fix a bug preventing to edit bookmark with ID #0ArthurHoaro2020-09-301-0/+24
|/
* Fix invalid redirection using the path of an external domainArthurHoaro2020-09-221-2/+2
| | | | Fixes #1554
* Improve ManageTagController coverage and error handlingArthurHoaro2020-07-231-0/+282