mirror of
https://github.com/getredash/redash.git
synced 2025-12-22 19:03:26 -05:00
13 lines
462 B
JavaScript
13 lines
462 B
JavaScript
import dashboardPage from './dashboard';
|
|
import dashboardList from './dashboard-list';
|
|
import widgetComponent from './widget';
|
|
import addWidgetDialog from './add-widget-dialog';
|
|
import registerEditDashboardDialog from './edit-dashboard-dialog';
|
|
|
|
export default function (ngModule) {
|
|
addWidgetDialog(ngModule);
|
|
widgetComponent(ngModule);
|
|
registerEditDashboardDialog(ngModule);
|
|
return Object.assign({}, dashboardPage(ngModule), dashboardList(ngModule));
|
|
}
|