1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-24 15:49:46 +02:00

feat: Implemented moving a list between boards with instant UI update. Fixed authorization for socket requests (automatic token injection). After moving a list, user is automatically switched to the target board. Added translations for the new move list action to all locale files.

This commit is contained in:
symonbaikov 2025-06-11 14:17:12 +03:00
parent 18c7ff093b
commit 9c08ce51f1
39 changed files with 331 additions and 171 deletions

View file

@ -128,6 +128,7 @@ module.exports.routes = {
'DELETE /api/cards/:cardId/card-labels/labelId::labelId': 'card-labels/delete',
'POST /api/cards/:cardId/task-lists': 'task-lists/create',
'POST /api/lists/:id/move-to-board': 'lists/move-to-board',
'GET /api/task-lists/:id': 'task-lists/show',
'PATCH /api/task-lists/:id': 'task-lists/update',
'DELETE /api/task-lists/:id': 'task-lists/delete',