index.ts 480 B

123456789101112131415
  1. // Services
  2. export { ValidationSrv } from './services/ValidationSrv';
  3. // Components
  4. export * from './components/MoveToFolderModal';
  5. export * from './components/UploadDashboard';
  6. // Controllers
  7. import { DashboardListCtrl } from './DashboardListCtrl';
  8. import { SnapshotListCtrl } from './SnapshotListCtrl';
  9. import coreModule from 'app/core/core_module';
  10. coreModule.controller('DashboardListCtrl', DashboardListCtrl);
  11. coreModule.controller('SnapshotListCtrl', SnapshotListCtrl);