grafana/public/app/features/manage-dashboards/DashboardListCtrl.ts

11 lines
242 B
TypeScript
Raw Normal View History

import { NavModelSrv } from 'app/core/core';
2017-10-24 12:24:13 -05:00
export class DashboardListCtrl {
navModel: any;
/** @ngInject */
constructor(navModelSrv: NavModelSrv) {
this.navModel = navModelSrv.getNav('dashboards', 'manage-dashboards', 0);
}
2017-10-24 12:24:13 -05:00
}