| 123456789101112131415161718 |
- define([
- 'angular',
- ],
- function (angular) {
- 'use strict';
- var module = angular.module('grafana.controllers');
- module.controller('NewOrgCtrl', function($scope, $http, backendSrv) {
- $scope.newOrg = {name: ''};
- $scope.createOrg = function() {
- backendSrv.post('/api/org/', $scope.newOrg).then($scope.getUserOrgs);
- };
- });
- });
|