mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 21:35:52 +00:00
300a52f5ae
ui: UI Release Merge (1.8-beta-3: ui-staging merge)
18 lines
297 B
JavaScript
18 lines
297 B
JavaScript
import Controller from '@ember/controller';
|
|
export default Controller.extend({
|
|
queryParams: {
|
|
filterBy: {
|
|
as: 'type',
|
|
},
|
|
search: {
|
|
as: 'filter',
|
|
replace: true,
|
|
},
|
|
},
|
|
actions: {
|
|
sendClone: function(item) {
|
|
this.send('clone', item);
|
|
},
|
|
},
|
|
});
|