mirror of https://github.com/status-im/consul.git
17 lines
483 B
JavaScript
17 lines
483 B
JavaScript
export default function(visitable, submitable, deletable, cancelable, clickable, attribute, collection) {
|
|
return submitable(
|
|
cancelable(
|
|
deletable({
|
|
visit: visitable(['/:dc/acls/policies/:policy', '/:dc/acls/policies/create']),
|
|
tokens: collection(
|
|
'[data-test-tabular-row]',
|
|
deletable({
|
|
id: attribute('data-test-token', '[data-test-token]'),
|
|
token: clickable('a'),
|
|
})
|
|
),
|
|
})
|
|
)
|
|
);
|
|
}
|