Github user necouchman commented on a diff in the pull request:
https://github.com/apache/guacamole-client/pull/217#discussion_r156399871
--- Diff: guacamole/src/main/webapp/app/rest/types/Connection.js ---
@@ -104,6 +104,15 @@ angular.module('rest').factory('Connection', [function
defineConnection() {
*/
this.sharingProfiles = template.sharingProfiles;
+ /**
+ * The time that this connection was last used, in seconds since
+ * 1970-01-01 00:00:00 UTC. If this information is unknown or
+ * unavailable, this will be null.
+ *
+ * @type Number
--- End diff --
Based on the API code above on the servlet side, it looks like this
parameter is delivered by Java as a Date/Time, but is a number of seconds
(epoch) here. Does the API deliver it as a number of seconds, or is this
translation done automatically?
---