summaryrefslogtreecommitdiffstats
path: root/vbd/gui/module/src/main/resources/vpp/controllers/vpp.controller.js
diff options
context:
space:
mode:
Diffstat (limited to 'vbd/gui/module/src/main/resources/vpp/controllers/vpp.controller.js')
-rw-r--r--vbd/gui/module/src/main/resources/vpp/controllers/vpp.controller.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/vbd/gui/module/src/main/resources/vpp/controllers/vpp.controller.js b/vbd/gui/module/src/main/resources/vpp/controllers/vpp.controller.js
index 2d968f757..16ce20402 100644
--- a/vbd/gui/module/src/main/resources/vpp/controllers/vpp.controller.js
+++ b/vbd/gui/module/src/main/resources/vpp/controllers/vpp.controller.js
@@ -45,6 +45,16 @@ define(modules, function(vpp) {
$scope.$broadcast('RELOAD_SELECTED_VPP');
};
+ // filter used in inventory to filter interfaceList of vxlan_tunnel interfaces
+ $scope.filterRemoveVxlanIf = function (item) {
+ return item.name.indexOf('vxlan') !== 0;
+ };
+
+ // filter used in inventory to return vxlan_tunnel interfaces
+ $scope.filterGetVxlanIf = function (item) {
+ return item.name.indexOf('vxlan') === 0;
+ };
+
}]);