mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-18 04:27:02 +02:00
23 lines
642 B
JavaScript
23 lines
642 B
JavaScript
import Route from '@ember/routing/route';
|
|
import { inject as service } from '@ember/service';
|
|
|
|
export default Route.extend({
|
|
store: service(),
|
|
secretMountPath: service(),
|
|
pathHelp: service(),
|
|
model() {
|
|
const params = this.paramsFor('credentials');
|
|
return this.store.createRecord('kmip/credential', {
|
|
backend: this.secretMountPath.currentPath,
|
|
scope: params.scope_name,
|
|
role: params.role_name,
|
|
});
|
|
},
|
|
|
|
setupController(controller) {
|
|
this._super(...arguments);
|
|
const { scope_name: scope, role_name: role } = this.paramsFor('credentials');
|
|
controller.setProperties({ role, scope });
|
|
},
|
|
});
|