c98130cc08
* ui: Add the most basic workspace root in /ui * We already have a LICENSE file in the repository root * Change directory path in build scripts ui-v2 -> ui * Make yarn install flags configurable from elsewhere * Minimal workspace root makefile * Call the new docker specific target * Update yarn in the docker build image * Reconfigure the netlify target and move to the higher makefile * Move ui-v2 -> ui/packages/consul-ui * Change repo root to refleect new folder structure * Temporarily don't hoist consul-api-double * Fixup CI configuration * Fixup lint errors * Fixup Netlify target
19 lines
576 B
JavaScript
19 lines
576 B
JavaScript
import RepositoryService from 'consul-ui/services/repository';
|
|
const modelName = 'intention-permission';
|
|
export default RepositoryService.extend({
|
|
getModelName: function() {
|
|
return modelName;
|
|
},
|
|
create: function(obj = {}) {
|
|
// intention-permission and intention-permission-http
|
|
// are currently treated as one and the same
|
|
return this.store.createFragment(this.getModelName(), {
|
|
...obj,
|
|
HTTP: this.store.createFragment('intention-permission-http', obj.HTTP || {}),
|
|
});
|
|
},
|
|
persist: function(item) {
|
|
return item.execute();
|
|
},
|
|
});
|