mirror of
https://github.com/status-im/consul.git
synced 2025-01-21 02:59:48 +00:00
f154aabd57
* Add sorting to Intentions with tests * Skip Intentions url back test * Create comparator for intention and implement in template * Add a intentions navigation feature test
11 lines
187 B
JavaScript
11 lines
187 B
JavaScript
import Controller from '@ember/controller';
|
|
export default Controller.extend({
|
|
queryParams: {
|
|
sortBy: 'sort',
|
|
search: {
|
|
as: 'filter',
|
|
replace: true,
|
|
},
|
|
},
|
|
});
|