stable

Clone or download

Read-only

story #7580: Kanban column has a WIP limit

Change-Id: I6b26d3e5a3e8593c47a8b0efdcbe05cb57de0f32

Modified Files

Name
M plugins/agiledashboard/db/install.sql +8 −0 Go to diff View file
A plugins/agiledashboard/db/mysql/updates/2015/201502261627_add_plugin_agiledashboard_kanban_configuration_column_table.php +50 −0 Go to diff View file
M plugins/agiledashboard/db/uninstall.sql +1 −0 Go to diff View file
A plugins/agiledashboard/include/AgileDashboard/KanbanColumn.php +86 −0 Go to diff View file
A plugins/agiledashboard/include/AgileDashboard/KanbanColumnDao.class.php +36 −0 Go to diff View file
A plugins/agiledashboard/include/AgileDashboard/KanbanColumnFactory.php +101 −0 Go to diff View file
A plugins/agiledashboard/include/AgileDashboard/REST/v1/KanbanColumnRepresentation.php +59 −0 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/v1/KanbanRepresentation.php +13 −46 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/v1/KanbanResource.php +8 −1 Go to diff View file
M plugins/agiledashboard/include/autoload.php +6 −2 Go to diff View file
M plugins/agiledashboard/www/js/kanban/bower.json +3 −2 Go to diff View file
M plugins/agiledashboard/www/js/kanban/build.config.js +2 −1 Go to diff View file
M plugins/agiledashboard/www/js/kanban/po/fr.po +5 −1 Go to diff View file
M plugins/agiledashboard/www/js/kanban/po/template.pot +4 −0 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/app-kanban-controller.js +5 −0 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/app.js +2 −1 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/kanban.less +59 −6 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/kanban.tpl.html +10 −1 Go to diff View file
M plugins/agiledashboard/www/themes/FlamingParrot/css/style.less +2 −2 Go to diff View file
M tests/rest/KanbanTest.php +3 −1 Go to diff View file