GUACAMOLE-360: Allow connections to active connections at API level.

This commit is contained in:
Michael Jumper
2019-08-10 15:44:25 -07:00
parent 91bf8438db
commit a59e20eb8d
3 changed files with 58 additions and 2 deletions

View File

@@ -76,6 +76,14 @@ angular.module('rest').factory('ActiveConnection', [function defineActiveConnect
*/
this.username = template.username;
/**
* Whether this active connection may be connected to, just as a
* normal connection.
*
* @type Boolean
*/
this.connectable = template.connectable;
};
return ActiveConnection;