dashboard_list_ctrl.ts 183 B

12345678
  1. export class DashboardListCtrl {
  2. navModel: any;
  3. /** @ngInject */
  4. constructor(navModelSrv) {
  5. this.navModel = navModelSrv.getNav('dashboards', 'manage-dashboards', 0);
  6. }
  7. }