GUAC-1406: Add filtering to connection admin UI.

This commit is contained in:
Michael Jumper
2015-12-03 16:48:25 -08:00
parent e38d4a089a
commit edc3f19216
8 changed files with 52 additions and 9 deletions

View File

@@ -90,6 +90,25 @@ angular.module('settings').directive('guacSettingsConnections', [function guacSe
*/
$scope.permissions = null;
/**
* Array of all connection properties that are filterable.
*
* @type String[]
*/
$scope.filteredConnectionProperties = [
'name',
'protocol'
];
/**
* Array of all connection group properties that are filterable.
*
* @type String[]
*/
$scope.filteredConnectionGroupProperties = [
'name'
];
/**
* Returns whether critical data has completed being loaded.
*