open-nomad/ui/app/adapters/agent.js
Buck Doyle cd11cd290c Add manually-converted classes
I don’t know why the codemod ignored these files 🧐
2020-06-15 10:14:26 -05:00

11 lines
256 B
JavaScript

import ApplicationAdapter from './application';
export default class AgentAdapter extends ApplicationAdapter {
pathForType = () => 'agent/members';
urlForFindRecord() {
const [, ...args] = arguments;
return this.urlForFindAll(...args);
}
}