GUACAMOLE-339: Display the remote host field in connection history tables.

This commit is contained in:
Nick Couchman
2017-07-16 22:23:00 -04:00
parent f2120c8d14
commit 7522a495b8
6 changed files with 33 additions and 7 deletions

View File

@@ -52,6 +52,13 @@ angular.module('rest').factory('ConnectionHistoryEntry', [function defineConnect
*/
this.connectionName = template.connectionName;
/**
* The remote host associated with this history entry.
*
* @type String
*/
this.remoteHost = template.remoteHost;
/**
* The time that usage began, in seconds since 1970-01-01 00:00:00 UTC.
*
@@ -186,4 +193,4 @@ angular.module('rest').factory('ConnectionHistoryEntry', [function defineConnect
return ConnectionHistoryEntry;
}]);
}]);