mirror of https://github.com/hashicorp/consul
10 lines
285 B
JavaScript
10 lines
285 B
JavaScript
|
export default function(visitable, creatable, text, tokens, popoverSelect) {
|
||
|
return {
|
||
|
visit: visitable('/:dc/acls/tokens'),
|
||
|
update: text('[data-test-notification-update]'),
|
||
|
tokens: tokens(),
|
||
|
sort: popoverSelect('[data-test-sort-control]'),
|
||
|
...creatable(),
|
||
|
};
|
||
|
}
|