GUACAMOLE-5: Include sharing profiles within connection tree.

This commit is contained in:
Michael Jumper
2016-08-04 14:05:32 -07:00
parent 841bc4761a
commit 60152e3841
3 changed files with 193 additions and 20 deletions

View File

@@ -95,6 +95,15 @@ angular.module('rest').factory('Connection', [function defineConnection() {
*/
this.activeConnections = template.activeConnections;
/**
* An array of all associated sharing profiles, if known. This property
* may be null or undefined if sharing profiles have not been queried,
* and thus the sharing profiles are unknown.
*
* @type SharingProfile[]
*/
this.sharingProfiles = template.sharingProfiles;
};
return Connection;