mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-15 19:17:02 +02:00
10 lines
186 B
JavaScript
10 lines
186 B
JavaScript
import RoleEdit from './role-edit';
|
|
|
|
export default RoleEdit.extend({
|
|
actions: {
|
|
delete() {
|
|
this.get('model').save({ adapterOptions: { method: 'revoke' } });
|
|
},
|
|
},
|
|
});
|