open-consul/ui-v2/app/controllers/dc/services/show/intentions.js
John Cowen 41c988270f ui: Remove WithSearching mixin, use helpers instead (#7961)
* ui: Remove WithSearching mixin, use composable helpers instead
2020-06-03 16:46:53 +00:00

19 lines
291 B
JavaScript

import Controller from '@ember/controller';
export default Controller.extend({
queryParams: {
filterBy: {
as: 'action',
},
search: {
as: 'filter',
replace: true,
},
},
actions: {
route: function() {
this.send(...arguments);
},
},
});