stable

Clone or download

Read-only

story #7582: collapse my kanban columns

When user expand or collapse a column, its status is saved in the database so that when she reload the page, the board remembers which column should be collapsed. Change-Id: I723fa9db348e93512f1431baffcd951fd2ff4676

Modified Files

Name
M plugins/agiledashboard/include/AgileDashboard/KanbanColumnFactory.php +26 −21 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/KanbanPresenter.class.php +6 −1 Go to diff View file
A plugins/agiledashboard/include/AgileDashboard/KanbanUserPreferences.php +74 −0 Go to diff View file
A plugins/agiledashboard/include/AgileDashboard/REST/v1/Kanban/KanbanCollapseColumnRepresentation.php +33 −0 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/v1/Kanban/KanbanColumnsResource.php +6 −2 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/v1/Kanban/KanbanItemsResource.php +5 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/v1/Kanban/KanbanRepresentation.php +19 −6 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/v1/Kanban/KanbanRepresentationBuilder.php +15 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/v1/Kanban/KanbanResource.php +79 −7 Go to diff View file
M plugins/agiledashboard/include/autoload.php +4 −2 Go to diff View file
A plugins/agiledashboard/tests/include/KanbanUserPreferencesTest.php +97 −0 Go to diff View file
M plugins/agiledashboard/tests/rest/KanbanTest.php +71 −0 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/app-kanban-controller.js +92 −1 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/kanban-service.js +48 −0 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/kanban.tpl.html +6 −6 Go to diff View file