stable

Clone or download

Read-only

Link issues to Epics

After issueLinks, subtasks, sprints please welcome a 4th type of links when coming from Jira: epics and related issues. As the information is only available at Jira Agile level we need to inject the data in the whole call stack. Part of story #19242 create Jira project with Agile configuration Change-Id: Id6918b92ad3db890104d5351582bd2d1b5a20983

Modified Files

Name
A plugins/jira_import/include/JiraAgile/IssuesLinkedToEpicsRetriever.php +55 −0 Go to diff View file
A plugins/jira_import/include/JiraAgile/JiraEpic.php +58 −0 Go to diff View file
A plugins/jira_import/include/JiraAgile/JiraEpicIssuesRetriever.php +29 −0 Go to diff View file
A plugins/jira_import/include/JiraAgile/JiraEpicIssuesRetrieverFromAPI.php +69 −0 Go to diff View file
A plugins/jira_import/include/JiraAgile/JiraEpicRetriever.php +30 −0 Go to diff View file
A plugins/jira_import/include/JiraAgile/JiraEpicRetrieverFromAPI.php +68 −0 Go to diff View file
M plugins/jira_import/include/Project/CreateProjectFromJira.php +20 −1 Go to diff View file
A plugins/jira_import/tests/unit/JiraAgile/IssuesLinkedToEpicsRetrieverTest.php +91 −0 Go to diff View file
A plugins/jira_import/tests/unit/JiraAgile/JiraEpicIssuesRetrieverFromAPITest.php +85 −0 Go to diff View file
A plugins/jira_import/tests/unit/JiraAgile/JiraEpicRetrieverFromAPITest.php +88 −0 Go to diff View file
M plugins/tracker/include/Tracker/Creation/JiraImporter/FromJiraTrackerCreator.php +3 −1 Go to diff View file
M plugins/tracker/include/Tracker/Creation/JiraImporter/Import/Artifact/ArtifactsXMLExporter.php +8 −3 Go to diff View file
M plugins/tracker/include/Tracker/Creation/JiraImporter/Import/Artifact/DataChangesetXMLExporter.php +2 −0 Go to diff View file
A plugins/tracker/include/Tracker/Creation/JiraImporter/Import/Artifact/LinkedIssuesCollection.php +50 −0 Go to diff View file
M plugins/tracker/include/Tracker/Creation/JiraImporter/Import/Artifact/Snapshot/CurrentSnapshotBuilder.php +19 −4 Go to diff View file
M plugins/tracker/include/Tracker/Creation/JiraImporter/Import/Artifact/Snapshot/IssueSnapshotCollectionBuilder.php +4 −1 Go to diff View file
M plugins/tracker/include/Tracker/Creation/JiraImporter/Import/JiraXmlExporter.php +4 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/Artifact/ArtifactsXMLExporterTest.php +3 −0 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/Artifact/Snapshot/CurrentSnapshotBuilderTest.php +65 −2 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/Artifact/Snapshot/IssueSnapshotCollectionBuilderTest.php +4 −0 Go to diff View file