Implement Ctrl+A Select All and Batch Reset functionality

This commit is contained in:
Tiberiu Ichim 2026-02-15 16:33:16 +02:00
parent 23034e6672
commit f7506e84d3
9 changed files with 266 additions and 3 deletions

View file

@ -108,6 +108,7 @@ class ApiRouter {
this.router.post('/items/batch/move', LibraryItemController.batchMove.bind(this))
this.router.post('/items/batch/merge', LibraryItemController.batchMerge.bind(this))
this.router.post('/items/batch/consolidate', LibraryItemController.batchConsolidate.bind(this))
this.router.post('/items/batch/reset-metadata', LibraryItemController.batchResetMetadata.bind(this))
this.router.get('/items/:id', LibraryItemController.middleware.bind(this), LibraryItemController.findOne.bind(this))
this.router.delete('/items/:id', LibraryItemController.middleware.bind(this), LibraryItemController.delete.bind(this))