necouchman commented on code in PR #970: URL: https://github.com/apache/guacamole-client/pull/970#discussion_r1563642782
########## guacamole/src/main/frontend/src/app/history/services/guacHistory.js: ########## @@ -42,6 +42,31 @@ angular.module('history').factory('guacHistory', ['$injector', */ service.recentConnections = []; + /** + * Remove from the list of connection history the item having the given + * identfier. + * + * @param {String} id + * The identifier of the item to remove from the history list. + * + * @returns {boolean} + * True if the removal was successful, otherwise false. + */ + service.removeEntry = function removeEntry(id) { + + var i; + + for (i = 0; i < service.recentConnections.length; i++) { + if (service.recentConnections[i].id === id) { Review Comment: Thanks for the hint - this seems to work well! -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@guacamole.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org