mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-19 21:51:09 +02:00
14 lines
236 B
JavaScript
14 lines
236 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import RoleEdit from '../role-edit';
|
|
|
|
export default RoleEdit.extend({
|
|
init() {
|
|
this._super(...arguments);
|
|
this.set('backendType', 'pki');
|
|
},
|
|
});
|