mirror of
https://github.com/grafana/grafana.git
synced 2024-11-29 12:14:08 -06:00
38 lines
877 B
TypeScript
38 lines
877 B
TypeScript
import angular from 'angular';
|
|
import config from 'app/core/config';
|
|
|
|
export class SelectOrgCtrl {
|
|
/** @ngInject **/
|
|
constructor($scope, backendSrv, contextSrv) {
|
|
contextSrv.sidemenu = false;
|
|
|
|
$scope.navModel = {
|
|
main: {
|
|
icon: 'gicon gicon-branding',
|
|
subTitle: 'Preferences',
|
|
text: 'Select active organization',
|
|
},
|
|
};
|
|
|
|
$scope.init = function() {
|
|
$scope.getUserOrgs();
|
|
};
|
|
|
|
$scope.getUserOrgs = function() {
|
|
backendSrv.get('/api/user/orgs').then(function(orgs) {
|
|
$scope.orgs = orgs;
|
|
});
|
|
};
|
|
|
|
$scope.setUsingOrg = function(org) {
|
|
backendSrv.post('/api/user/using/' + org.orgId).then(function() {
|
|
window.location.href = config.appSubUrl + '/';
|
|
});
|
|
};
|
|
|
|
$scope.init();
|
|
}
|
|
}
|
|
|
|
angular.module('grafana.controllers').controller('SelectOrgCtrl', SelectOrgCtrl);
|