dev

Forked from tuleap/dev

Clone or download

Read-only

Merge commit 'refs/changes/15/3415/5' of ssh://gerrit.tuleap.net:29418/tuleap into stable

* ssh://gerrit.tuleap.net:29418/tuleap: request #7717 Remove dependencies between REST api and plugins

Modified Files

Name
M plugins/agiledashboard/include/AgileDashboard/REST/v1/BacklogItemParentReference.class.php +7 −26 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/v1/BacklogItemRepresentation.php +7 −73 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/v1/MilestoneParentReference.class.php +6 −20 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/v1/MilestoneRepresentation.class.php +10 −142 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/v1/OrderRepresentation.php +2 −50 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/v1/PlanningReference.class.php +2 −11 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/v1/PlanningRepresentation.class.php +8 −44 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/v1/ProjectBacklogResource.class.php +20 −21 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/v1/ResourcesPatcher.class.php +3 −2 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/v2/BacklogRepresentation.php +3 −17 Go to diff View file
M plugins/agiledashboard/include/agiledashboardPlugin.class.php +10 −0 Go to diff View file
M plugins/agiledashboard/include/constants.php +5 −0 Go to diff View file
M plugins/cardwall/include/cardwallPlugin.class.php +3 −7 Go to diff View file
A src/common/REST/v1/BacklogItemParentReferenceBase.class.php +43 −0 Go to diff View file
A src/common/REST/v1/BacklogItemRepresentationBase.class.php +89 −0 Go to diff View file
A src/common/REST/v1/MilestoneParentReferenceBase.class.php +38 −0 Go to diff View file
A src/common/REST/v1/MilestoneRepresentationBase.class.php +158 −0 Go to diff View file
A src/common/REST/v1/OrderRepresentationBase.class.php +72 −0 Go to diff View file
A src/common/REST/v1/PlanningReferenceBase.class.php +35 −0 Go to diff View file
A src/common/REST/v1/PlanningRepresentationBase.class.php +62 −0 Go to diff View file
A src/common/REST/v2/BacklogRepresentationBase.class.php +38 −0 Go to diff View file
M src/common/autoload.php +10 −2 Go to diff View file
M src/common/event/Event.class.php +8 −0 Go to diff View file
M src/common/project/REST/v1/ProjectResource.class.php +43 −15 Go to diff View file
M src/common/project/REST/v2/ProjectResource.class.php +19 −1 Go to diff View file