mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-19 21:51:09 +02:00
15 lines
258 B
JavaScript
15 lines
258 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import RoleEdit from '../role-edit';
|
|
|
|
export default RoleEdit.extend({
|
|
actions: {
|
|
delete() {
|
|
this.model.save({ adapterOptions: { method: 'revoke' } });
|
|
},
|
|
},
|
|
});
|