28 lines
735 B
JavaScript
28 lines
735 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import Route from '@ember/routing/route';
|
|
import { inject as service } from '@ember/service';
|
|
|
|
export default Route.extend({
|
|
store: service(),
|
|
secretMountPath: service(),
|
|
pathHelp: service(),
|
|
beforeModel() {
|
|
return this.pathHelp.getNewModel('kmip/config', this.secretMountPath.currentPath);
|
|
},
|
|
model() {
|
|
return this.store.findRecord('kmip/config', this.secretMountPath.currentPath).catch((err) => {
|
|
if (err.httpStatus === 404) {
|
|
const model = this.store.createRecord('kmip/config');
|
|
model.set('id', this.secretMountPath.currentPath);
|
|
return model;
|
|
} else {
|
|
throw err;
|
|
}
|
|
});
|
|
},
|
|
});
|