mirror of
https://github.com/status-im/consul.git
synced 2025-01-14 07:44:50 +00:00
8e9fca9be6
* Add model layer support for filtering intentions by service * Add Route, Controller and template for services.show.intentions tab We are still loading the intentions themselves in the parent Route for the moment * Load the intentions in in the parent route for the moment * Temporarily add support for returning to history -1 Once we have an intention form underneath the service/intention tab this will no longer be needed * Add the new tab and enable blocking queries for it * Add some further acceptance testing around intention listings
8 lines
188 B
JavaScript
8 lines
188 B
JavaScript
export default function(visitable, creatable, intentions, filter) {
|
|
return creatable({
|
|
visit: visitable('/:dc/intentions'),
|
|
intentions: intentions(),
|
|
filter: filter,
|
|
});
|
|
}
|