mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-15 02:57:04 +02:00
* params * fix tests * role-pki to pki-role * role-pki-edit to pki/role-pki-edit * configure-pki-secret component * config-pki and config-pki-ca components * fix tests * pki-cert-show and pki-cert-popup * fix
10 lines
180 B
JavaScript
10 lines
180 B
JavaScript
import RoleEdit from '../role-edit';
|
|
|
|
export default RoleEdit.extend({
|
|
actions: {
|
|
delete() {
|
|
this.model.save({ adapterOptions: { method: 'revoke' } });
|
|
},
|
|
},
|
|
});
|