open-consul/ui-v2/app/controllers/dc/acls/roles/index.js

24 lines
580 B
JavaScript
Raw Normal View History

import Controller from '@ember/controller';
import { get, computed } from '@ember/object';
import WithSearching from 'consul-ui/mixins/with-searching';
export default Controller.extend(WithSearching, {
queryParams: {
s: {
as: 'filter',
replace: true,
},
},
init: function() {
this.searchParams = {
role: 's',
};
this._super(...arguments);
},
searchable: computed('items', function() {
return get(this, 'searchables.role')
.add(get(this, 'items'))
.search(get(this, this.searchParams.role));
}),
actions: {},
});