stable

Clone or download

Read-only

feat(plan-iterations): Retrieve program info

part of: story #21385 display Program's iterations How to test: - Go to the plan iteration UI - Focus the empty text state - Take a look at the parent div data attributes --> There is a data-program attribute holding your project info Change-Id: Ie31ee15235ca778f7a72fbaeb0f6569d4d5b3714

Modified Files

Name
M plugins/program_management/include/Adapter/Program/DisplayPlanIterationsPresenter.php +4 −2 Go to diff View file
A plugins/program_management/include/Adapter/Workspace/ProgramBaseInfoBuilder.php +46 −0 Go to diff View file
M plugins/program_management/include/Adapter/Workspace/ProjectProxy.php +7 −0 Go to diff View file
M plugins/program_management/include/DisplayPlanIterationsController.php +5 −2 Go to diff View file
M plugins/program_management/include/Domain/Program/Backlog/ProgramIncrement/PlannedIterations.php +15 −5 Go to diff View file
M plugins/program_management/include/Domain/ProjectReference.php +2 −0 Go to diff View file
A plugins/program_management/include/Domain/Workspace/BuildProgramBaseInfo.php +28 −0 Go to diff View file
A plugins/program_management/include/Domain/Workspace/ProgramBaseInfo.php +38 −0 Go to diff View file
M plugins/program_management/include/program_managementPlugin.php +6 −2 Go to diff View file
M plugins/program_management/templates/plan-iterations.mustache +1 −0 Go to diff View file
M plugins/program_management/tests/Domain/Program/Backlog/ProgramIncrement/PlannedIterationsTest.php +13 −1 Go to diff View file
M plugins/program_management/tests/unit/Adapter/Program/DisplayPlanIterationsPresenterTest.php +4 −0 Go to diff View file
A plugins/program_management/tests/unit/Adapter/Workspace/ProgramBaseInfoBuilderTest.php +43 −0 Go to diff View file
M plugins/program_management/tests/unit/Adapter/Workspace/ProgramPrivacyBuilderTest.php +4 −4 Go to diff View file
M plugins/program_management/tests/unit/Adapter/Workspace/ProjectProxyTest.php +3 −3 Go to diff View file
M plugins/program_management/tests/unit/DisplayAdminProgramManagementControllerTest.php +1 −0 Go to diff View file
M plugins/program_management/tests/unit/DisplayPlanIterationsControllerTest.php +3 −1 Go to diff View file
A plugins/program_management/tests/unit/Stub/BuildProgramBaseInfoStub.php +50 −0 Go to diff View file
M plugins/program_management/tests/unit/Stub/ProjectReferenceStub.php +7 −3 Go to diff View file