mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-10 15:11:22 +00:00
GUAC-932: Begin migration of admin to new guacGroupList. Remove unused util module.
This commit is contained in:
@@ -101,6 +101,14 @@ angular.module('groupList').factory('GroupListItem', ['ConnectionGroup', functio
|
||||
*/
|
||||
this.isExpanded = template.isExpanded;
|
||||
|
||||
/**
|
||||
* The connection or connection group whose data is exposed within
|
||||
* this GroupListItem.
|
||||
*
|
||||
* @type Connection|ConnectionGroup
|
||||
*/
|
||||
this.wrappedItem = template.wrappedItem;
|
||||
|
||||
};
|
||||
|
||||
/**
|
||||
@@ -125,7 +133,10 @@ angular.module('groupList').factory('GroupListItem', ['ConnectionGroup', functio
|
||||
|
||||
// Type information
|
||||
isConnection : true,
|
||||
isConnectionGroup : false
|
||||
isConnectionGroup : false,
|
||||
|
||||
// Wrapped item
|
||||
wrappedItem : connection
|
||||
|
||||
});
|
||||
|
||||
@@ -170,7 +181,10 @@ angular.module('groupList').factory('GroupListItem', ['ConnectionGroup', functio
|
||||
isBalancing : connectionGroup.type === ConnectionGroup.Type.BALANCING,
|
||||
|
||||
// Already-converted children
|
||||
children : children
|
||||
children : children,
|
||||
|
||||
// Wrapped item
|
||||
wrappedItem : connectionGroup
|
||||
|
||||
});
|
||||
|
||||
|
Reference in New Issue
Block a user