stable

Clone or download

Read-only

Remove link to iteration app when there is no iteration tracker

part of request #24996 Plan iterations link leads to nowhere How to test: - Configure a Program to NOT have an iteration tracker configured - Go to Program backlog - When you expand an Iteration, you should not see the "Plan iterations" link - No functional change expected in Program Administration and Iterations app Change-Id: I3a0615c8062e55e3e00d7e81477e076580e8077d

Modified Files

Name
D plugins/program_management/include/Adapter/Program/Admin/ProgramBacklogConfigurationPresenter.php +0 −54 Go to diff View file
M plugins/program_management/include/Adapter/Program/Admin/ProgramBacklogPresenter.php +9 −2 Go to diff View file
M plugins/program_management/include/DisplayPlanIterationsController.php +15 −12 Go to diff View file
M plugins/program_management/include/DisplayProgramBacklogController.php +16 −21 Go to diff View file
A plugins/program_management/include/Domain/Program/Backlog/IterationTracker/IterationTrackerConfiguration.php +53 −0 Go to diff View file
A plugins/program_management/include/Domain/Program/Backlog/ProgramBacklogConfiguration.php +64 −0 Go to diff View file
M plugins/program_management/include/Domain/Program/Backlog/ProgramIncrement/PlannedIterations.php +13 −18 Go to diff View file
M plugins/program_management/include/Domain/Program/Backlog/ProgramIncrementTracker/ProgramIncrementTrackerConfiguration.php +4 −26 Go to diff View file
M plugins/program_management/scripts/program_management/index.ts +2 −0 Go to diff View file
M plugins/program_management/scripts/program_management/src/components/Backlog/ProgramIncrement/ProgramIncrementCard.test.ts +25 −25 Go to diff View file
M plugins/program_management/scripts/program_management/src/components/Backlog/ProgramIncrement/ProgramIncrementCard.vue +4 −0 Go to diff View file
M plugins/program_management/scripts/program_management/src/store/configuration/index.ts +1 −0 Go to diff View file
M plugins/program_management/templates/program-backlog.mustache +1 −0 Go to diff View file
A plugins/program_management/tests/unit/Adapter/Program/Admin/ProgramBacklogPresenterTest.php +123 −0 Go to diff View file
M plugins/program_management/tests/unit/Adapter/Program/DisplayPlanIterationsPresenterTest.php +16 −11 Go to diff View file
A plugins/program_management/tests/unit/Builder/IterationTrackerConfigurationBuilder.php +47 −0 Go to diff View file
M plugins/program_management/tests/unit/DisplayPlanIterationsControllerTest.php +76 −72 Go to diff View file
A plugins/program_management/tests/unit/Domain/Program/Backlog/IterationTracker/IterationTrackerConfigurationTest.php +69 −0 Go to diff View file
A plugins/program_management/tests/unit/Domain/Program/Backlog/ProgramBacklogConfigurationTest.php +113 −0 Go to diff View file
M plugins/program_management/tests/unit/Domain/Program/Backlog/ProgramIncrement/PlannedIterationsTest.php +16 −9 Go to diff View file
M plugins/program_management/tests/unit/Domain/Program/Backlog/ProgramIncrementTracker/ProgramIncrementTrackerConfigurationTest.php +7 −12 Go to diff View file