2019-01-23 12:02:47 +01:00
|
|
|
// Services
|
2019-01-23 12:52:46 +01:00
|
|
|
import './services/UnsavedChangesSrv';
|
2019-01-23 13:00:05 +01:00
|
|
|
import './services/DashboardLoaderSrv';
|
2019-01-23 13:10:49 +01:00
|
|
|
import './services/DashboardSrv';
|
2019-01-23 12:02:47 +01:00
|
|
|
// Components
|
2019-01-22 21:36:36 +01:00
|
|
|
import './components/DashLinks';
|
|
|
|
|
import './components/DashExportModal';
|
|
|
|
|
import './components/DashNav';
|
2019-01-23 11:37:46 +01:00
|
|
|
import './components/VersionHistory';
|
2019-01-23 11:48:27 +01:00
|
|
|
import './components/DashboardSettings';
|
2019-01-23 12:52:46 +01:00
|
|
|
|
2020-12-17 15:50:11 +01:00
|
|
|
import { DashboardPermissions } from './components/DashboardPermissions/DashboardPermissions';
|
2018-09-13 16:00:02 +02:00
|
|
|
// angular wrappers
|
|
|
|
|
import { react2AngularDirective } from 'app/core/utils/react2angular';
|
|
|
|
|
|
|
|
|
|
react2AngularDirective('dashboardPermissions', DashboardPermissions, ['dashboardId', 'folder']);
|