list_ctrl.ts 359 B

1234567891011121314151617
  1. ///<reference path="../../headers/common.d.ts" />
  2. import angular from 'angular';
  3. export class AppListCtrl {
  4. apps: any[];
  5. /** @ngInject */
  6. constructor(private backendSrv: any) {
  7. this.backendSrv.get('api/org/apps').then(apps => {
  8. this.apps = apps;
  9. });
  10. }
  11. }
  12. angular.module('grafana.controllers').controller('AppListCtrl', AppListCtrl);