mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-10 15:11:22 +00:00
GUAC-1000 Responded to code review comments.
This commit is contained in:
@@ -101,14 +101,14 @@ angular.module('manage').controller('manageConnectionController', ['$scope', '$i
|
|||||||
/**
|
/**
|
||||||
* Whether the user has UPDATE permission for the current connection.
|
* Whether the user has UPDATE permission for the current connection.
|
||||||
*
|
*
|
||||||
* @type boolean
|
* @type Boolean
|
||||||
*/
|
*/
|
||||||
$scope.hasUpdatePermission = null;
|
$scope.hasUpdatePermission = null;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Whether the user has DELETE permission for the current connection.
|
* Whether the user has DELETE permission for the current connection.
|
||||||
*
|
*
|
||||||
* @type boolean
|
* @type Boolean
|
||||||
*/
|
*/
|
||||||
$scope.hasDeletePermission = null;
|
$scope.hasDeletePermission = null;
|
||||||
|
|
||||||
|
@@ -74,14 +74,14 @@ angular.module('manage').controller('manageConnectionGroupController', ['$scope'
|
|||||||
/**
|
/**
|
||||||
* Whether the user has UPDATE permission for the current connection group.
|
* Whether the user has UPDATE permission for the current connection group.
|
||||||
*
|
*
|
||||||
* @type boolean
|
* @type Boolean
|
||||||
*/
|
*/
|
||||||
$scope.hasUpdatePermission = null;
|
$scope.hasUpdatePermission = null;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Whether the user has DELETE permission for the current connection group.
|
* Whether the user has DELETE permission for the current connection group.
|
||||||
*
|
*
|
||||||
* @type boolean
|
* @type Boolean
|
||||||
*/
|
*/
|
||||||
$scope.hasDeletePermission = null;
|
$scope.hasDeletePermission = null;
|
||||||
|
|
||||||
|
@@ -79,18 +79,17 @@ angular.module('manage').controller('manageUserController', ['$scope', '$injecto
|
|||||||
*/
|
*/
|
||||||
$scope.rootGroup = null;
|
$scope.rootGroup = null;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Whether the authenticated user has UPDATE permission for the user being edited.
|
* Whether the authenticated user has UPDATE permission for the user being edited.
|
||||||
*
|
*
|
||||||
* @type boolean
|
* @type Boolean
|
||||||
*/
|
*/
|
||||||
$scope.hasUpdatePermission = null;
|
$scope.hasUpdatePermission = null;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Whether the authenticated user has DELETE permission for the user being edited.
|
* Whether the authenticated user has DELETE permission for the user being edited.
|
||||||
*
|
*
|
||||||
* @type boolean
|
* @type Boolean
|
||||||
*/
|
*/
|
||||||
$scope.hasDeletePermission = null;
|
$scope.hasDeletePermission = null;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user