dev

Forked from tuleap/dev

Clone or download

Read-only

story #7508: Fetch all "to be planned" cards (without children)

Change-Id: Idc916522638b94a34a8c022289fc639115b54bc1

Modified Files

Name
M plugins/agiledashboard/include/AgileDashboard/Milestone/Backlog/BacklogItem.class.php +21 −5 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Milestone/Pane/Planning/PlanningV2Presenter.class.php +10 −3 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/v1/BacklogItemParentReference.class.php +8 −3 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/v1/BacklogItemRepresentation.php +12 −0 Go to diff View file
M plugins/agiledashboard/include/Planning/MilestonePaneFactory.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/Planning/VirtualTopMilestonePaneFactory.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/agiledashboardPlugin.class.php +8 −0 Go to diff View file
M plugins/agiledashboard/templates/pane-planning-v2.mustache +3 −0 Go to diff View file
A plugins/agiledashboard/www/js/angular/.bowerrc +4 −0 Go to diff View file
A plugins/agiledashboard/www/js/angular/.gitignore +9 −0 Go to diff View file
A plugins/agiledashboard/www/js/angular/CHANGELOG.md +102 −0 Go to diff View file
A plugins/agiledashboard/www/js/angular/Gruntfile.js +528 −0 Go to diff View file
A plugins/agiledashboard/www/js/angular/LICENSE +19 −0 Go to diff View file
A plugins/agiledashboard/www/js/angular/bower.json +15 −0 Go to diff View file
A plugins/agiledashboard/www/js/angular/build.config.js +81 −0 Go to diff View file
A plugins/agiledashboard/www/js/angular/changelog.tpl +23 −0 Go to diff View file
A plugins/agiledashboard/www/js/angular/karma/karma-unit.tpl.js +63 −0 Go to diff View file
A plugins/agiledashboard/www/js/angular/module.prefix +1 −0 Go to diff View file
A plugins/agiledashboard/www/js/angular/module.suffix +1 −0 Go to diff View file
A plugins/agiledashboard/www/js/angular/package.json +32 −0 Go to diff View file
A plugins/agiledashboard/www/js/angular/po/README.mkd +26 −0 Go to diff View file
A plugins/agiledashboard/www/js/angular/po/fr.mo Binary file Go to diff View file
A plugins/agiledashboard/www/js/angular/po/fr.po +27 −0 Go to diff View file
A plugins/agiledashboard/www/js/angular/po/template.pot +14 −0 Go to diff View file
A plugins/agiledashboard/www/js/angular/src/app/app-config.js +17 −0 Go to diff View file
A plugins/agiledashboard/www/js/angular/src/app/app-main-controller.js +19 −0 Go to diff View file
A plugins/agiledashboard/www/js/angular/src/app/app-planning-controller.js +54 −0 Go to diff View file
A plugins/agiledashboard/www/js/angular/src/app/app.js +8 −0 Go to diff View file
A plugins/agiledashboard/www/js/angular/src/app/app.spec.js +15 −0 Go to diff View file
A plugins/agiledashboard/www/js/angular/src/app/backlog-item/backlog-item-service.js +61 −0 Go to diff View file
A plugins/agiledashboard/www/js/angular/src/app/backlog-item/backlog-item.js +5 −0 Go to diff View file
A plugins/agiledashboard/www/js/angular/src/app/backlog-item/backlog-item.less +115 −0 Go to diff View file
A plugins/agiledashboard/www/js/angular/src/app/planning.tpl.html +25 −0 Go to diff View file
A plugins/agiledashboard/www/js/angular/src/app/shared-properties/shared-properties-service.js +35 −0 Go to diff View file
A plugins/agiledashboard/www/js/angular/src/app/shared-properties/shared-properties.js +3 −0 Go to diff View file
A plugins/agiledashboard/www/js/angular/src/assets/animate.min.css +6 −0 Go to diff View file
A plugins/agiledashboard/www/js/angular/src/assets/loader.gif Binary file Go to diff View file
A plugins/agiledashboard/www/js/angular/src/less/main.less +14 −0 Go to diff View file
M plugins/tracker/www/themes/default/css/style.less +1 −33 Go to diff View file
A src/www/themes/common/css/utils/colors.less +33 −0 Go to diff View file