kong-dashboard
Version:
Web UI for managing Kong gateway
19 lines (16 loc) • 380 B
JavaScript
(function() {
angular.module('app').component('objectProperty', {
restrict: 'E',
scope: {},
bindings: {
key: '<',
propertySchema: '<',
object: '=',
errors: '<',
removable: '<',
path: '<'
},
templateUrl: 'components/object_properties/object_property/template.html',
controller: 'ObjectPropertyController'
});
})();