You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
consul/ui-v2/app/services/form.js

11 lines
321 B

import Service from '@ember/service';
import builderFactory from 'consul-ui/utils/form/builder';
const builder = builderFactory();
export default Service.extend({
// a `get` method is added via the form initializer
// see initializers/form.js
build: function(obj, name) {
return builder(...arguments);
},
});