xy: import Trello boards via API (comments, attachments, >1000) #18
Loading…
Reference in a new issue
No description provided.
Delete branch "xy-trello-import"
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?
Why
The JSON-export importer silently dropped comments (they live in the boards
actionsarray, not on cards) and could not bring in attachments or more than Trello`\s 1000-action cap.Replaces it with a live Trello import: connect a token, pick a board, and pull lists, cards, labels, all comments (paginated past the 1000 cap) and uploaded attachments (files + photos). Comments keep their original timestamp and author.
Trello calls go through a read-only server proxy (CSP is
connect-src 'self'; Trello`\s download endpoint has no CORS); content is still encrypted client-side before storage. App key reused from chgksuite; manual token paste (that key allows only wildcard origins). The JSON-file import stays as a fallback.