2019-01-23 06:31:45 -06:00
|
|
|
// Services
|
|
|
|
export { ValidationSrv } from './services/ValidationSrv';
|
|
|
|
|
|
|
|
// Components
|
2019-01-22 14:36:36 -06:00
|
|
|
export * from './components/MoveToFolderModal';
|
2019-01-23 06:31:45 -06:00
|
|
|
export * from './components/UploadDashboard';
|
2018-09-10 06:59:31 -05:00
|
|
|
|
2019-01-23 06:31:45 -06:00
|
|
|
// Controllers
|
2018-09-10 06:59:31 -05:00
|
|
|
import { DashboardListCtrl } from './DashboardListCtrl';
|
|
|
|
import { SnapshotListCtrl } from './SnapshotListCtrl';
|
2019-01-22 14:36:36 -06:00
|
|
|
|
|
|
|
import coreModule from 'app/core/core_module';
|
2018-09-10 06:59:31 -05:00
|
|
|
|
|
|
|
coreModule.controller('DashboardListCtrl', DashboardListCtrl);
|
|
|
|
coreModule.controller('SnapshotListCtrl', SnapshotListCtrl);
|