mirror of https://github.com/status-im/consul.git
13 lines
304 B
JavaScript
13 lines
304 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
export default function (visitable, creatable, policies, popoverSelect) {
|
|
return creatable({
|
|
visit: visitable('/:dc/acls/policies'),
|
|
policies: policies(),
|
|
sort: popoverSelect('[data-test-sort-control]'),
|
|
});
|
|
}
|