open-vault/ui/app/adapters/kmip/ca.js
Matthew Irish 9fccccb0ec
UI KMIP CA (#6983)
* move download-button and toolbar-download-button to core addon

* add ca model and adapter and show CA on the engine configuration page

* add other side of model relationship for kmip ca<->config
2019-06-26 11:02:05 -05:00

9 lines
216 B
JavaScript

import BaseAdapter from './base';
export default BaseAdapter.extend({
urlForFindRecord(id, modelName, snapshot) {
let name = this.pathForType(modelName);
return this.buildURL(id, name, snapshot);
},
});