[PR #108] [CLOSED] Add an import feature for import Trello board as JSON to Planka #930

Closed
opened 2026-02-04 21:38:50 +03:00 by OVERLORD · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/plankanban/planka/pull/108
Author: @FaustinM
Created: 3/25/2021
Status: Closed

Base: masterHead: add-import


📝 Commits (5)

  • a128874 Add an import feature for import Trello board as JSON to Planka
  • a729e11 Add an import feature for import Trello board as JSON to Planka
  • 679dff7 Fix conflict on package-lock.json
  • 6630e4a Merge remote-tracking branch 'Paladium-Developpement/add-import' into add-import
  • 3305d8e Remove ide files

📊 Changes

24 files changed (+753 additions, -36741 deletions)

View changed files

📝 .gitignore (+2 -0)
📝 client/package-lock.json (+22 -24079)
📝 client/src/actions/entry/project.js (+7 -0)
📝 client/src/actions/project.js (+41 -0)
📝 client/src/api/projects.js (+3 -0)
client/src/assets/images/import-icon.svg (+5 -0)
📝 client/src/components/Projects/Projects.jsx (+18 -1)
📝 client/src/constants/ActionTypes.js (+5 -0)
📝 client/src/constants/EntryActionTypes.js (+1 -0)
📝 client/src/containers/ProjectsContainer.js (+2 -1)
📝 client/src/locales/en/core.js (+1 -0)
📝 client/src/sagas/core/requests/project.js (+30 -0)
📝 client/src/sagas/core/services/project.js (+15 -1)
📝 client/src/sagas/core/watchers/project.js (+4 -0)
📝 package-lock.json (+1 -1874)
server/api/controllers/projects/import.js (+157 -0)
📝 server/api/helpers/create-project.js (+17 -12)
server/api/helpers/download-import-data.js (+33 -0)
server/api/helpers/get-color-from-trello.js (+35 -0)
server/api/helpers/import-attachment-receiver.js (+81 -0)

...and 4 more files

📄 Description

After the issue #105


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

## 📋 Pull Request Information **Original PR:** https://github.com/plankanban/planka/pull/108 **Author:** [@FaustinM](https://github.com/FaustinM) **Created:** 3/25/2021 **Status:** ❌ Closed **Base:** `master` ← **Head:** `add-import` --- ### 📝 Commits (5) - [`a128874`](https://github.com/plankanban/planka/commit/a128874e956c65ccf4145c70e07900e8925bedc5) Add an import feature for import Trello board as JSON to Planka - [`a729e11`](https://github.com/plankanban/planka/commit/a729e116365e1161dc0043249ca38a1c06d907b2) Add an import feature for import Trello board as JSON to Planka - [`679dff7`](https://github.com/plankanban/planka/commit/679dff7301b623801a71dad2242ffaf96ddee4ac) Fix conflict on package-lock.json - [`6630e4a`](https://github.com/plankanban/planka/commit/6630e4a90901dd86da5bded47c724fa05484b805) Merge remote-tracking branch 'Paladium-Developpement/add-import' into add-import - [`3305d8e`](https://github.com/plankanban/planka/commit/3305d8e1d21a699d0fe07a6715eb91ac6413f279) Remove ide files ### 📊 Changes **24 files changed** (+753 additions, -36741 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+2 -0) 📝 `client/package-lock.json` (+22 -24079) 📝 `client/src/actions/entry/project.js` (+7 -0) 📝 `client/src/actions/project.js` (+41 -0) 📝 `client/src/api/projects.js` (+3 -0) ➕ `client/src/assets/images/import-icon.svg` (+5 -0) 📝 `client/src/components/Projects/Projects.jsx` (+18 -1) 📝 `client/src/constants/ActionTypes.js` (+5 -0) 📝 `client/src/constants/EntryActionTypes.js` (+1 -0) 📝 `client/src/containers/ProjectsContainer.js` (+2 -1) 📝 `client/src/locales/en/core.js` (+1 -0) 📝 `client/src/sagas/core/requests/project.js` (+30 -0) 📝 `client/src/sagas/core/services/project.js` (+15 -1) 📝 `client/src/sagas/core/watchers/project.js` (+4 -0) 📝 `package-lock.json` (+1 -1874) ➕ `server/api/controllers/projects/import.js` (+157 -0) 📝 `server/api/helpers/create-project.js` (+17 -12) ➕ `server/api/helpers/download-import-data.js` (+33 -0) ➕ `server/api/helpers/get-color-from-trello.js` (+35 -0) ➕ `server/api/helpers/import-attachment-receiver.js` (+81 -0) _...and 4 more files_ </details> ### 📄 Description After the issue #105 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
OVERLORD added the pull-request label 2026-02-04 21:38:50 +03:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/planka#930