stable

Clone or download

Read-only

Can choose iteration labels and submit it

This is part of story #21793 configure Program Management How to test: - Run `tuleap config-set feature_flag_program_management_display_iteration 1` if you need - Go to program service Expected results: - In iteration section, you can change the iteration label and sublabel Change-Id: I119dc0228c8ceec26599b678f3e8e4b6fca8ddf7

Modified Files

Name
M plugins/program_management/include/Adapter/Program/Backlog/Iteration/IterationsDAO.php +11 −1 Go to diff View file
M plugins/program_management/include/DisplayAdminProgramManagementController.php +25 −3 Go to diff View file
M plugins/program_management/include/Domain/Program/Admin/IterationTrackerConfiguration/PotentialIterationTrackerConfigurationPresentersBuilder.php +4 −13 Go to diff View file
M plugins/program_management/include/Domain/Program/Admin/ProgramAdminPresenter.php +7 −1 Go to diff View file
A plugins/program_management/include/Domain/Program/Backlog/IterationTracker/IterationLabels.php +54 −0 Go to diff View file
A plugins/program_management/include/Domain/Program/Backlog/IterationTracker/RetrieveIterationLabels.php +31 −0 Go to diff View file
M plugins/program_management/include/program_managementPlugin.php +2 −1 Go to diff View file
R plugins/program_management/scripts/admin/src/helper/HTML_select_element_extractor.test.ts Go to diff View file
R plugins/program_management/scripts/admin/src/helper/HTML_select_element_extractor.ts Go to diff View file
M plugins/program_management/scripts/admin/src/helper/form-fields-checker.ts +1 −1 Go to diff View file
A plugins/program_management/scripts/admin/src/helper/iteration-labels-input-helper.test.ts +82 −0 Go to diff View file
A plugins/program_management/scripts/admin/src/helper/iteration-labels-input-helper.ts +54 −0 Go to diff View file
M plugins/program_management/scripts/admin/src/helper/program-configuration-builder.test.ts +10 −0 Go to diff View file
M plugins/program_management/scripts/admin/src/helper/program-configuration-builder.ts +18 −17 Go to diff View file
M plugins/program_management/scripts/admin/src/milestones/init-list-pickers-milestone-section.test.ts +41 −0 Go to diff View file
M plugins/program_management/scripts/admin/src/milestones/init-list-pickers-milestone-section.ts +22 −1 Go to diff View file
M plugins/program_management/site-content/fr_FR/LC_MESSAGES/tuleap-program_management.po +20 −0 Go to diff View file
M plugins/program_management/templates/admin/milestones/admin-configuration-iteration-section.mustache +28 −0 Go to diff View file
M plugins/program_management/tests/unit/DisplayAdminProgramManagementControllerTest.php +3 −1 Go to diff View file
M plugins/program_management/tests/unit/Domain/Program/Admin/IterationTrackerConfiguration/PotentialIterationTrackerConfigurationPresentersBuilderTest.php +16 −15 Go to diff View file
A plugins/program_management/tests/unit/Domain/Program/Backlog/IterationTracker/IterationLabelsTest.php +79 −0 Go to diff View file
A plugins/program_management/tests/unit/Stub/RetrieveIterationLabelsStub.php +53 −0 Go to diff View file