stable
Clone or download
Read-only
part of story #18408 plan Features in Program Increment How to test: Forge your db to add the scaled agile service with something like: INSERT INTO tuleap.service VALUES (<project_id>, 'plugin_scaled_agile:service_lbl_key', 'plugin_scaled_agile:service_desc_key', 'plugin_scaled_agile', '/scaled_agile/<project-short-name>/', 1, 1, 'system', 134, 'master', null, 0, 0, ''); Access to your program project: - you should have a new service "Scaled Agile" in the nav bar - click on it, the service empty state is displayed Change-Id: If30fdb67eb18d13bb5b310a1ef27705bf50921ce
Modified Files
Name | ||||
---|---|---|---|---|
A | plugins/scaled_agile/build-manifest.json | +9 | −0 | Go to diff View file |
A | plugins/scaled_agile/include/DisplayProgramBacklogController.php | +120 | −0 | Go to diff View file |
A | plugins/scaled_agile/include/ProgramBacklogPresenter.php | +44 | −0 | Go to diff View file |
A | plugins/scaled_agile/include/ScaledAgileService.php | +53 | −0 | Go to diff View file |
M | plugins/scaled_agile/include/scaled_agilePlugin.php | +44 | −1 | Go to diff View file |
A | plugins/scaled_agile/jest.config.js | +25 | −0 | Go to diff View file |
A | plugins/scaled_agile/package-lock.json | +301 | −0 | Go to diff View file |
A | plugins/scaled_agile/package.json | +25 | −0 | Go to diff View file |
A | plugins/scaled_agile/scripts/scaled_agile/index.ts | +55 | −0 | Go to diff View file |
A | plugins/scaled_agile/scripts/scaled_agile/po/fr_FR.po | +19 | −0 | Go to diff View file |
A | plugins/scaled_agile/scripts/scaled_agile/src/components/App.test.ts | +40 | −0 | Go to diff View file |
A | plugins/scaled_agile/scripts/scaled_agile/src/components/App.vue | +49 | −0 | Go to diff View file |
A | plugins/scaled_agile/scripts/scaled_agile/src/components/Breadcrumb.test.ts | +39 | −0 | Go to diff View file |
A | plugins/scaled_agile/scripts/scaled_agile/src/components/Breadcrumb.vue | +56 | −0 | Go to diff View file |
A | plugins/scaled_agile/scripts/scaled_agile/src/components/__snapshots__/Breadcrumb.test.ts.snap | +45 | −0 | Go to diff View file |
A | plugins/scaled_agile/scripts/scaled_agile/src/configuration.ts | +34 | −0 | Go to diff View file |
A | plugins/scaled_agile/scripts/scaled_agile/src/helpers/local-vue-for-test.ts | +32 | −0 | Go to diff View file |
A | plugins/scaled_agile/scripts/scaled_agile/vue.shims.d.ts | +23 | −0 | Go to diff View file |
M | plugins/scaled_agile/site-content/fr_FR/LC_MESSAGES/tuleap-scaled_agile.po | +9 | −0 | Go to diff View file |
A | plugins/scaled_agile/templates/program-backlog.mustache | +4 | −0 | Go to diff View file |
A | plugins/scaled_agile/tests/unit/DisplayProgramBacklogControllerTest.php | +122 | −0 | Go to diff View file |
A | plugins/scaled_agile/themes/BurningParrot/_scaled_agile.scss | +31 | −0 | Go to diff View file |
A | plugins/scaled_agile/themes/BurningParrot/scaled_agile-blue-condensed.scss | +20 | −0 | Go to diff View file |
A | plugins/scaled_agile/themes/BurningParrot/scaled_agile-blue.scss | +20 | −0 | Go to diff View file |
A | plugins/scaled_agile/themes/BurningParrot/scaled_agile-green-condensed.scss | +20 | −0 | Go to diff View file |
A | plugins/scaled_agile/themes/BurningParrot/scaled_agile-green.scss | +20 | −0 | Go to diff View file |
A | plugins/scaled_agile/themes/BurningParrot/scaled_agile-grey-condensed.scss | +20 | −0 | Go to diff View file |
A | plugins/scaled_agile/themes/BurningParrot/scaled_agile-grey.scss | +20 | −0 | Go to diff View file |
A | plugins/scaled_agile/themes/BurningParrot/scaled_agile-orange-condensed.scss | +20 | −0 | Go to diff View file |
A | plugins/scaled_agile/themes/BurningParrot/scaled_agile-orange.scss | +20 | −0 | Go to diff View file |
A | plugins/scaled_agile/themes/BurningParrot/scaled_agile-purple-condensed.scss | +20 | −0 | Go to diff View file |
A | plugins/scaled_agile/themes/BurningParrot/scaled_agile-purple.scss | +20 | −0 | Go to diff View file |
A | plugins/scaled_agile/themes/BurningParrot/scaled_agile-red-condensed.scss | +20 | −0 | Go to diff View file |
A | plugins/scaled_agile/themes/BurningParrot/scaled_agile-red.scss | +20 | −0 | Go to diff View file |
A | plugins/scaled_agile/themes/BurningParrot/scaled_agile/_project-header-background.scss | +36 | −0 | Go to diff View file |
A | plugins/scaled_agile/tsconfig.json | +9 | −0 | Go to diff View file |
A | plugins/scaled_agile/webpack.common.js | +71 | −0 | Go to diff View file |
A | plugins/scaled_agile/webpack.dev.js | +23 | −0 | Go to diff View file |
A | plugins/scaled_agile/webpack.prod.js | +23 | −0 | Go to diff View file |
M | tools/rpm/tuleap.rhel7.spec | +2 | −0 | Go to diff View file |