stable
Clone or download
Read-only
fix request #29204 Program managment should display Milestones Program Increments, Iterations even if no team is defined
How to reproduce: Have a program with program increment and iteration defined Remove all its team Panel show that configuration is not done, we should display the Milestones Program Increments, Iterations panel when a plan is defined With this fix, when project is part of plan, the Milestones Program Increments, Iterations will always be displayed Change-Id: I60102ab35d3ca21669e390183bbe0748c75504c6
Modified Files
Name | ||||
---|---|---|---|---|
M | plugins/program_management/include/Adapter/Program/Admin/ProgramAdminPresenter.php | +2 | −0 | Go to diff View file |
M | plugins/program_management/include/Adapter/Program/Backlog/AsynchronousCreation/IterationCreationProcessorBuilder.php | +2 | −2 | Go to diff View file |
M | plugins/program_management/include/Adapter/Program/Backlog/AsynchronousCreation/ProgramIncrementCreationProcessorBuilder.php | +2 | −2 | Go to diff View file |
M | plugins/program_management/include/Adapter/Program/Plan/PlanDao.php | +12 | −1 | Go to diff View file |
M | plugins/program_management/include/Adapter/Program/Plan/ProgramAdapter.php | +23 | −4 | Go to diff View file |
R | plugins/program_management/include/Adapter/Program/ProgramDao.php | Go to diff View file | ||
M | plugins/program_management/include/DisplayAdminProgramManagementController.php | +7 | −1 | Go to diff View file |
M | plugins/program_management/include/Domain/Program/Admin/Configuration/ProgramAdmin.php | +9 | −3 | Go to diff View file |
A | plugins/program_management/include/Domain/Program/Plan/ProjectIsAProgramOrUsedInPlanChecker.php | +35 | −0 | Go to diff View file |
A | plugins/program_management/include/Domain/Program/Plan/VerifyIsProjectUsedInPlan.php | +30 | −0 | Go to diff View file |
M | plugins/program_management/include/Domain/Program/ProgramIdentifier.php | +16 | −0 | Go to diff View file |
A | plugins/program_management/include/Domain/Program/VerifyIsProjectAProgramOrUsedInPlan.php | +28 | −0 | Go to diff View file |
M | plugins/program_management/include/REST/v1/ProgramIncrementResource.php | +2 | −2 | Go to diff View file |
M | plugins/program_management/include/REST/v1/ProjectResource.php | +2 | −2 | Go to diff View file |
M | plugins/program_management/include/program_managementPlugin.php | +16 | −13 | Go to diff View file |
M | plugins/program_management/templates/admin/admin.mustache | +2 | −2 | Go to diff View file |
M | plugins/program_management/tests/integration/Adapter/Program/ProgramDaoTest.php | +2 | −2 | Go to diff View file |
M | plugins/program_management/tests/rest/v1/Helper/ProgramDataBuilder.php | +2 | −2 | Go to diff View file |
M | plugins/program_management/tests/unit/Adapter/Program/Plan/ProgramAdapterTest.php | +20 | −9 | Go to diff View file |
M | plugins/program_management/tests/unit/DisplayAdminProgramManagementControllerTest.php | +4 | −0 | Go to diff View file |
M | plugins/program_management/tests/unit/Domain/Program/Admin/Configuration/ProgramAdminTest.php | +5 | −1 | Go to diff View file |
A | plugins/program_management/tests/unit/Stub/ProjectIsAProgramOrUsedInPlanCheckerStub.php | +62 | −0 | Go to diff View file |
A | plugins/program_management/tests/unit/Stub/VerifyIsProjectAProgramOrUsedInPlanStub.php | +45 | −0 | Go to diff View file |
A | plugins/program_management/tests/unit/Stub/VerifyIsProjectUsedInPlanStub.php | +43 | −0 | Go to diff View file |