GUAC-1406: Add filtering to main connection list of the home screen.

This commit is contained in:
Michael Jumper
2015-12-05 22:30:42 -08:00
parent edc3f19216
commit e7d89fc659
9 changed files with 55 additions and 3 deletions

View File

@@ -44,6 +44,24 @@ angular.module('home').controller('homeController', ['$scope', '$injector',
*/
$scope.rootConnectionGroups = null;
/**
* Array of all connection properties that are filterable.
*
* @type String[]
*/
$scope.filteredConnectionProperties = [
'name'
];
/**
* Array of all connection group properties that are filterable.
*
* @type String[]
*/
$scope.filteredConnectionGroupProperties = [
'name'
];
/**
* Returns whether critical data has completed being loaded.
*