Wire 'Move to Backlog' button in task selection modal #12
Labels
No labels
area:backend
area:cf-integration
area:flutter-ui
priority:blocking-v1
priority:v1-polish
type:docs
type:epic
type:feature
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Blocks
#14 Wire timeline card quick-action icons}
eva/focus-flow
Reference: eva/focus-flow#12
Loading…
Reference in a new issue
No description provided.
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?
Context
Part of #7.
task_selection_modal.darthas a bare "Backlog"_ActionButtonwith no callback param, while the backend commandV1ApplicationCommandUseCases.moveFlexibleToBacklogis implemented and tested.Scope
onMoveToBacklogcallback param to the modal's action buttonmoveFlexibleToBacklogand refresh Today stateOut of scope
Timeline card quick-action icon (tracked in #13).
Acceptance criteria
Tapping "Backlog" in the task modal moves the task to backlog and updates the timeline.
Related
#7
Implemented, and simpler than the original scope suggested. On inspection,
pushTaskToBacklog(already wired into the modal's Push dropdown as "Push to backlog") already callscommands.moveFlexibleToBacklog— the exact backend command this issue named. The standalone "Backlog" quick-action button is a duplicate entry point to the same action, so it now just reuses the existingonPushToBacklogcallback already threaded through the modal — no new plumbing needed.Widget tests pass,
flutter analyzeclean.