feat: Add ability to move lists between boards (#1208)

This commit is contained in:
Symon Baikov
2025-09-04 01:07:10 +03:00
committed by GitHub
parent 5f34a737bb
commit 9683227fbc
58 changed files with 950 additions and 263 deletions

View File

@@ -42,6 +42,15 @@ const moveList = (id, index) => ({
},
});
const transferList = (id, boardId, index = 0) => ({
type: EntryActionTypes.LIST_TRANSFER,
payload: {
id,
boardId,
index,
},
});
const sortList = (id, data) => {
return {
type: EntryActionTypes.LIST_SORT,
@@ -92,6 +101,7 @@ export default {
updateList,
handleListUpdate,
moveList,
transferList,
sortList,
moveListCardsToArchiveList,
clearTrashListInCurrentBoard,