stable

Clone or download

Read-only

Create PUT kanban/:id/tracker_reports

This is a part of story #10663 filtered view in kanban The commit adds the backend to save the reports usable to filter a Kanban. If a report is removed, it's also removed as a usable report for Kanban. Change-Id: I92baeb0fa6ce3e916d0aea3ba05bcbc68f184ba5

Modified Files

Name
M plugins/agiledashboard/db/install.sql +8 −0 Go to diff View file
A plugins/agiledashboard/db/mysql/updates/2017/201711301606_add_kanban_tracker_reports_table.php +53 −0 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/v1/Kanban/KanbanResource.php +81 −3 Go to diff View file
R plugins/agiledashboard/include/AgileDashboard/REST/v1/Kanban/TrackerReportFilter/FilteredDiagramRepresentationBuilder.php Go to diff View file
R plugins/agiledashboard/include/AgileDashboard/REST/v1/Kanban/TrackerReportFilter/FilteredItemCollectionRepresentationBuilder.php Go to diff View file
A plugins/agiledashboard/include/AgileDashboard/REST/v1/Kanban/TrackerReport/TrackerReportDao.php +90 −0 Go to diff View file
A plugins/agiledashboard/include/AgileDashboard/REST/v1/Kanban/TrackerReport/TrackerReportUpdater.php +47 −0 Go to diff View file
M plugins/agiledashboard/include/agiledashboardPlugin.class.php +12 −0 Go to diff View file
M plugins/agiledashboard/include/autoload.php +6 −4 Go to diff View file
M plugins/agiledashboard/tests/rest/KanbanTest.php +56 −0 Go to diff View file
M plugins/agiledashboard/tests/rest/TestBase.php +26 −0 Go to diff View file
A plugins/tracker/include/Tracker/Report/Event/TrackerReportDeleted.php +46 −0 Go to diff View file
M plugins/tracker/include/Tracker/Report/Tracker_Report.class.php +5 −1 Go to diff View file
M plugins/tracker/include/autoload.php +3 −2 Go to diff View file