15 lines
379 B
JavaScript
Raw Normal View History

2018-07-04 15:06:20 +01:00
export default function(visitable, deletable, clickable, attribute, collection, filter) {
return {
visit: visitable('/:dc/acls'),
acls: collection(
'[data-test-tabular-row]',
deletable({
name: attribute('data-test-acl', '[data-test-acl]'),
acl: clickable('a'),
actions: clickable('label'),
})
),
filter: filter,
};
}