stable
Clone or download
This is part of story #21368 create mirrored iteration How to test: - Add a custom labels in PI with REST route put project/:id/program_plan [0] - Run `make dev-forgeupdrage` - Go to Program service => "PI Label Custom" and "Sub-Label program increment" should still displayed - Remove custom labels with REST route put project/:id/program_plan [1] - Go to Program service => Custom labels will be removed. "Program Increments" and "program increment" are displayed instead [0] { "program_increment_tracker_id": 95, "plannable_tracker_ids": [ 98 ], "permissions": { "can_prioritize_features": [ "100_3" ] }, "program_increment_label": "PI Label Custom", "program_increment_sub_label": "Sub-Label program increment" } [1] { "program_increment_tracker_id": 95, "plannable_tracker_ids": [ 98 ], "permissions": { "can_prioritize_features": [ "100_3" ] } } Change-Id: If7b52113e2c072e2e571b0633dc676ed13582188
Modified Files
Name | ||||
---|---|---|---|---|
M | plugins/program_management/db/install.sql | +2 | −6 | Go to diff View file |
A | plugins/program_management/db/mysql/2021/202105260845_move_program_increment_label_in_program_table.php | +94 | −0 | Go to diff View file |
M | plugins/program_management/db/uninstall.sql | +0 | −1 | Go to diff View file |
M | plugins/program_management/include/Adapter/Program/Backlog/ProgramIncrement/ProgramIncrementTrackerConfigurationBuilder.php | +2 | −2 | Go to diff View file |
M | plugins/program_management/include/Adapter/Program/Plan/PlanDao.php | +10 | −27 | Go to diff View file |
M | plugins/program_management/include/Adapter/Workspace/WorkspaceDAO.php | +1 | −4 | Go to diff View file |
M | plugins/program_management/include/Domain/Program/Plan/PlanStore.php | +1 | −1 | Go to diff View file |
M | plugins/program_management/tests/unit/Adapter/Program/Backlog/ProgramIncrement/ProgramIncrementTrackerConfigurationBuilderTest.php | +1 | −1 | Go to diff View file |