GUAC-964: Add missing initialization of $scope variables in manageController.

This commit is contained in:
Michael Jumper
2015-01-05 02:29:34 -08:00
parent f993bc0dbc
commit ca6259ed6a

View File

@@ -49,6 +49,20 @@ angular.module('manage').controller('manageController', ['$scope', '$injector',
}
};
/**
* All visible users.
*
* @type User[]
*/
$scope.users = null;
/**
* The root connection group of the connection group hierarchy.
*
* @type ConnectionGroup
*/
$scope.rootGroup = null;
/**
* Whether the current user can manage users. If the current permissions
* have not yet been loaded, this will be null.