open-vault/ui/app/adapters/identity/base.js
Hamid Ghaf 27bb03bbc0
adding copyright header (#19555)
* adding copyright header

* fix fmt and a test
2023-03-15 09:00:52 -07:00

29 lines
656 B
JavaScript

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
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);
},
});