open-nomad/ui/app/adapters/node.js

13 lines
368 B
JavaScript
Raw Normal View History

2017-09-19 14:47:10 +00:00
import ApplicationAdapter from './application';
export default ApplicationAdapter.extend({
findAllocations(node) {
const url = `${this.buildURL('node', node.get('id'), node, 'findRecord')}/allocations`;
return this.ajax(url, 'GET').then(allocs => {
return this.store.pushPayload('allocation', {
allocations: allocs,
});
});
},
});