open-vault/ui/app/adapters/identity/base.js

24 lines
578 B
JavaScript
Raw Normal View History

2018-04-03 14:16:57 +00:00
import ApplicationAdapater from '../application';
export default ApplicationAdapater.extend({
namespace: 'v1',
pathForType(type) {
return type;
},
urlForQuery() {
return this._super(...arguments) + '?list=true';
},
query(store, type) {
return this.ajax(this.buildURL(type.modelName, null, null, 'query'), 'GET');
},
buildURL(modelName, id, snapshot, requestType, query) {
if (requestType === 'createRecord') {
return this._super(...arguments);
}
return this._super(`${modelName}/id`, id, snapshot, requestType, query);
},
});