Feat/move copy list#8050
Open
SadeqRouhani wants to merge 2 commits into
Open
Conversation
Add a 'Move/copy list' action to the list (stack) header menu that opens
a dialog for picking a target board, mirroring the existing move/copy
card feature.
Backend: StackService gains move() and cloneStack(), exposed through
StackOcsController as PUT /stacks/{stackId}/move and POST
/stacks/{stackId}/clone.
- Move keeps the stack's identity, so its cards retain their comments,
attachments and activity history; board-specific labels assigned to
the cards are remapped onto the target board by title (creating
missing ones when the user may manage it), as a cross-board card move
already does.
- Copy deep-clones the list and its cards through CardService::cloneCard,
which remaps labels and re-assigns users on the target board.
Frontend: StackApi/store gain moveStack and cloneStack actions and a new
StackMoveDialog with a board selector and Move/Copy buttons. Only boards
the user can manage are offered as targets.
Includes unit tests for move(), the same-board no-op and cloneStack().
Signed-off-by: sadegh <sa.rohani72@gmail.com>
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Display an indeterminate progress bar in the move/copy dialog while the request is running, and let the stack create activity event fall back to the default actor instead of passing the user id explicitly. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Signed-off-by: sadegh <sa.rohani72@gmail.com>
c0964a2 to
eecf8c1
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
TODO
Checklist