stable

Clone or download

Read-only

Cache zavatars

part of: story #14151 Update the assigned-to semantic of a card How to test: - Refresh the page and open the network tab of the webconsole - Pick a card whose tracker has the assignee semantic defined - Toggle the edit mode of this card, then click on the icon "add assignee" --> A Get request is sent to retrieve assignable users --> The people picker works as usal - Toggle read mode - Toggle the edit mode - Click the "add assignee" icon --> No request sent Same behavior for another card of the same tracker Change-Id: Iaa03979cf142e2a5aee9d80205f4329d7103ffb1

Modified Files

Name
M plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Body/Swimlane/Card/CardAssignees.test.ts +19 −8 Go to diff View file
M plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Body/Swimlane/Card/CardAssignees.vue +12 −20 Go to diff View file
M plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Body/Swimlane/Card/Editor/Assignees/PeoplePicker.test.ts +1 −1 Go to diff View file
M plugins/taskboard/scripts/taskboard/src/store/swimlane/card/card-actions.test.ts +73 −1 Go to diff View file
M plugins/taskboard/scripts/taskboard/src/store/swimlane/card/card-actions.ts +32 −2 Go to diff View file
A plugins/taskboard/scripts/taskboard/src/store/swimlane/card/card-getters.test.ts +107 −0 Go to diff View file
A plugins/taskboard/scripts/taskboard/src/store/swimlane/card/card-getters.ts +38 −0 Go to diff View file
M plugins/taskboard/scripts/taskboard/src/store/swimlane/card/card-mutations.test.ts +31 −0 Go to diff View file
M plugins/taskboard/scripts/taskboard/src/store/swimlane/card/card-mutations.ts +12 −1 Go to diff View file
M plugins/taskboard/scripts/taskboard/src/store/swimlane/card/type.ts +17 −0 Go to diff View file
M plugins/taskboard/scripts/taskboard/src/store/swimlane/index.ts +3 −1 Go to diff View file
M plugins/taskboard/scripts/taskboard/src/store/swimlane/swimlane-getters.ts +2 −0 Go to diff View file
M plugins/taskboard/scripts/taskboard/src/store/swimlane/type.ts +2 −0 Go to diff View file