stable

Clone or download

Read-only

Minimize/maximize widgets

This is part of story #10173 Have multiple dashboards User should be able to minimize or maximize a widget. Change-Id: I5d5996b5619d30726a8039228b019eb22947f724

Modified Files

Name
M site-content/fr_FR/LC_MESSAGES/tuleap-core.po +6 −0 Go to diff View file
M site-content/tuleap-core.pot +6 −0 Go to diff View file
M src/common/Dashboard/Project/ProjectDashboardController.php +55 −1 Go to diff View file
M src/common/Dashboard/Project/ProjectDashboardRouter.php +6 −0 Go to diff View file
A src/common/Dashboard/Project/WidgetMinimizor.php +57 −0 Go to diff View file
M src/common/Dashboard/User/UserDashboardController.php +53 −1 Go to diff View file
M src/common/Dashboard/User/UserDashboardRouter.php +6 −0 Go to diff View file
A src/common/Dashboard/User/WidgetMinimizor.php +47 −0 Go to diff View file
M src/common/Dashboard/Widget/DashboardWidget.php +14 −6 Go to diff View file
M src/common/Dashboard/Widget/DashboardWidgetDao.php +34 −0 Go to diff View file
M src/common/Dashboard/Widget/DashboardWidgetPresenter.php +4 −1 Go to diff View file
M src/common/Dashboard/Widget/DashboardWidgetRetriever.php +18 −15 Go to diff View file
M src/common/autoload.php +4 −2 Go to diff View file
M src/db/mysql/database_structure.sql +1 −0 Go to diff View file
A src/db/mysql/updates/2017/201705231141_store_widget_is_minimized.php +45 −0 Go to diff View file
M src/templates/dashboard/widgets.mustache +22 −7 Go to diff View file
M src/www/my/index.php +3 −1 Go to diff View file
M src/www/projects.php +3 −1 Go to diff View file
A src/www/scripts/dashboards/dashboard-minimize.js +29 −0 Go to diff View file
M src/www/scripts/dashboards/dashboard.js +2 −0 Go to diff View file
M src/www/themes/BurningParrot/css/includes/_dashboard-widgets.scss +9 −0 Go to diff View file
M src/www/themes/BurningParrot/css/includes/_dashboard.scss +4 −17 Go to diff View file