mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-13 01:57:03 +02:00
10 lines
249 B
JavaScript
10 lines
249 B
JavaScript
import { helper as buildHelper } from '@ember/component/helper';
|
|
|
|
const TOOLS_ACTIONS = ['wrap', 'lookup', 'unwrap', 'rewrap', 'random', 'hash'];
|
|
|
|
export function toolsActions() {
|
|
return TOOLS_ACTIONS;
|
|
}
|
|
|
|
export default buildHelper(toolsActions);
|