From 49d85dd89c6ab11fa8f021571b35114e3da06745 Mon Sep 17 00:00:00 2001 From: James Muehlner Date: Tue, 20 Jan 2015 19:40:14 -0800 Subject: [PATCH] GUAC-1000 Responded to code review comments. --- .../app/manage/controllers/manageConnectionController.js | 4 ++-- .../manage/controllers/manageConnectionGroupController.js | 4 ++-- .../webapp/app/manage/controllers/manageUserController.js | 5 ++--- 3 files changed, 6 insertions(+), 7 deletions(-) diff --git a/guacamole/src/main/webapp/app/manage/controllers/manageConnectionController.js b/guacamole/src/main/webapp/app/manage/controllers/manageConnectionController.js index 0e9bb5a72..3a97bd3a2 100644 --- a/guacamole/src/main/webapp/app/manage/controllers/manageConnectionController.js +++ b/guacamole/src/main/webapp/app/manage/controllers/manageConnectionController.js @@ -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; diff --git a/guacamole/src/main/webapp/app/manage/controllers/manageConnectionGroupController.js b/guacamole/src/main/webapp/app/manage/controllers/manageConnectionGroupController.js index d8f0ea902..0b88c27d7 100644 --- a/guacamole/src/main/webapp/app/manage/controllers/manageConnectionGroupController.js +++ b/guacamole/src/main/webapp/app/manage/controllers/manageConnectionGroupController.js @@ -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; diff --git a/guacamole/src/main/webapp/app/manage/controllers/manageUserController.js b/guacamole/src/main/webapp/app/manage/controllers/manageUserController.js index 9b2d518fe..29d254017 100644 --- a/guacamole/src/main/webapp/app/manage/controllers/manageUserController.js +++ b/guacamole/src/main/webapp/app/manage/controllers/manageUserController.js @@ -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;