27bb03bbc0
* adding copyright header * fix fmt and a test
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' } });
|
|
},
|
|
},
|
|
});
|