mirror of
https://github.com/kemko/nomad.git
synced 2026-01-03 17:05:43 +03:00
11 lines
256 B
JavaScript
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);
|
|
}
|
|
}
|