9fccccb0ec
* 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
9 lines
216 B
JavaScript
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);
|
|
},
|
|
});
|