GUAC-1000 Responded to code review comments.

This commit is contained in:
James Muehlner
2015-01-20 19:40:14 -08:00
parent 9489eaa122
commit 49d85dd89c
3 changed files with 6 additions and 7 deletions

View File

@@ -101,14 +101,14 @@ angular.module('manage').controller('manageConnectionController', ['$scope', '$i
/**
* Whether the user has UPDATE permission for the current connection.
*
* @type boolean
* @type Boolean
*/
$scope.hasUpdatePermission = null;
/**
* Whether the user has DELETE permission for the current connection.
*
* @type boolean
* @type Boolean
*/
$scope.hasDeletePermission = null;

View File

@@ -74,14 +74,14 @@ angular.module('manage').controller('manageConnectionGroupController', ['$scope'
/**
* Whether the user has UPDATE permission for the current connection group.
*
* @type boolean
* @type Boolean
*/
$scope.hasUpdatePermission = null;
/**
* Whether the user has DELETE permission for the current connection group.
*
* @type boolean
* @type Boolean
*/
$scope.hasDeletePermission = null;

View File

@@ -79,18 +79,17 @@ angular.module('manage').controller('manageUserController', ['$scope', '$injecto
*/
$scope.rootGroup = null;
/**
* Whether the authenticated user has UPDATE permission for the user being edited.
*
* @type boolean
* @type Boolean
*/
$scope.hasUpdatePermission = null;
/**
* Whether the authenticated user has DELETE permission for the user being edited.
*
* @type boolean
* @type Boolean
*/
$scope.hasDeletePermission = null;