8 lines
238 B
JavaScript
8 lines
238 B
JavaScript
|
export default function(visitable, creatable, authMethods, popoverSelect) {
|
||
|
return creatable({
|
||
|
visit: visitable('/:dc/acls/auth-methods'),
|
||
|
authMethods: authMethods(),
|
||
|
sort: popoverSelect('[data-test-sort-control]'),
|
||
|
});
|
||
|
}
|