stable

Clone or download

Read-only

Merge commit 'refs/changes/26/6426/12' of ssh://gerrit.tuleap.net:29418/tuleap into HEAD

* ssh://gerrit.tuleap.net:29418/tuleap: request #9373 Kanban realtime desync with column never loaded Change-Id: I7b7030f3833041faa61a4f11bb1a3a0db6461e23

Modified Files

Name
M plugins/agiledashboard/include/AgileDashboard/REST/v1/Kanban/KanbanResource.php +88 −20 Go to diff View file
M plugins/agiledashboard/www/js/kanban/bower.json +2 −1 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 +12 −0 Go to diff View file
M plugins/agiledashboard/www/js/kanban/po/template.pot +5 −1 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/app-kanban-controller.js +25 −397 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/app-kanban-controller.spec.js +11 −8 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/column-collection-service.js +92 −1 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/column-collection-service.spec.js +126 −0 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/dropped-service.js +6 −4 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/dropped-service.spec.js +15 −7 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/jwt/jwt-service.js +30 −25 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/jwt/jwt.js +3 −3 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/kanban-column/kanban-column-controller.js +2 −1 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/kanban-column/kanban-column-controller.spec.js +2 −1 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/kanban-column/kanban-column-service.js +69 −6 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/kanban-column/kanban-column-service.spec.js +74 −4 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/kanban-item/kanban-item-rest-service.js +14 −3 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/kanban-item/kanban-item-rest-service.spec.js +52 −19 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/kanban-service.js +30 −7 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/kanban-service.spec.js +26 −12 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/kanban.scss +1 −0 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/kanban.tpl.html +2 −1 Go to diff View file
A plugins/agiledashboard/www/js/kanban/src/app/socket/_socket.scss +16 −0 Go to diff View file
A plugins/agiledashboard/www/js/kanban/src/app/socket/socket-config.js +11 −0 Go to diff View file
A plugins/agiledashboard/www/js/kanban/src/app/socket/socket-disconnect-directive.js +20 −0 Go to diff View file
A plugins/agiledashboard/www/js/kanban/src/app/socket/socket-disconnect.tpl.html +4 −0 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/socket/socket-factory.js +22 −51 Go to diff View file
A plugins/agiledashboard/www/js/kanban/src/app/socket/socket-service.js +319 −0 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/socket/socket.js +7 −5 Go to diff View file