necouchman commented on code in PR #918:
URL: https://github.com/apache/guacamole-client/pull/918#discussion_r1382004382


##########
guacamole/src/main/frontend/src/app/home/directives/guacRecentConnections.js:
##########
@@ -50,13 +50,24 @@ angular.module('home').directive('guacRecentConnections', 
[function guacRecentCo
 
             // Required services
             var guacHistory       = $injector.get('guacHistory');
+            var preferenceService = $injector.get('preferenceService');
 
             /**
              * Array of all known and visible recently-used connections.
              *
              * @type RecentConnection[]
              */
             $scope.recentConnections = [];
+            
+            /**
+             * Returns whether or not recent connections should be displayed.
+             * 
+             * @returns {Boolean}
+             *     true if recent connections should be displayed, otherwise 
false.
+             */
+            $scope.showRecentConnections = function showRecentConnections() {

Review Comment:
   Renamed via rebase.



##########
guacamole/src/main/frontend/src/app/settings/services/preferenceService.js:
##########
@@ -142,6 +142,20 @@ angular.module('settings').provider('preferenceService', 
['$injector',
          */
         language : getDefaultLanguageKey(),
         
+        /**
+         * The number of recent connections to display.
+         * 
+         * @type Integer

Review Comment:
   Fixed via rebase.



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to