mirror of
https://github.com/plankanban/planka.git
synced 2026-05-04 18:00:55 +03:00
[PR #1297] feat: Add ability to move boards between projects #1262
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/plankanban/planka/pull/1297
Author: @symonbaikov
Created: 8/13/2025
Status: 🔄 Open
Base:
master← Head:feat/move-board-to-project-clean📝 Commits (1)
dff98d9feat: Add backend API endpoint for moving boards between projects📊 Changes
18 files changed (+435 additions, -3 deletions)
View changed files
📝
client/src/actions/boards.js(+26 -0)📝
client/src/api/boards.js(+4 -0)➕
client/src/components/boards/Board/ProjectSelectStep.jsx(+60 -0)➕
client/src/components/boards/Board/ProjectSelectStep.module.scss(+40 -0)📝
client/src/components/boards/BoardSettingsModal/GeneralPane/GeneralPane.jsx(+42 -1)📝
client/src/constants/ActionTypes.js(+3 -0)📝
client/src/constants/EntryActionTypes.js(+5 -0)📝
client/src/entry-actions/boards.js(+9 -0)📝
client/src/locales/en-GB/core.js(+3 -0)📝
client/src/locales/en-US/core.js(+3 -0)📝
client/src/models/Board.js(+1 -0)📝
client/src/models/Card.js(+8 -1)📝
client/src/models/List.js(+8 -1)📝
client/src/sagas/core/services/boards.js(+17 -0)📝
client/src/sagas/core/watchers/boards.js(+5 -0)➕
server/api/controllers/boards/move-to-project.js(+83 -0)➕
server/api/helpers/boards/move-to-project.js(+116 -0)📝
server/config/routes.js(+2 -0)📄 Description
Added functionality to move boards from one project to another

Fixed: #1253
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.