ux(less): began less / bootstrap less cleanup and restructuring

This commit is contained in:
Torkel Ödegaard
2016-02-14 18:02:53 +01:00
parent e32ee9f02e
commit 5274f93db7
37 changed files with 13 additions and 819 deletions

View File

@@ -1,24 +0,0 @@
define([
'angular',
],
function (angular) {
'use strict';
var module = angular.module('grafana.controllers');
module.controller('AdminSettingsCtrl', function($scope, backendSrv) {
$scope.init = function() {
$scope.getUsers();
};
$scope.getUsers = function() {
backendSrv.get('/api/admin/settings').then(function(settings) {
$scope.settings = settings;
});
};
$scope.init();
});
});