import Route from '@ember/routing/route'; import { inject as service } from '@ember/service'; import { hash } from 'rsvp'; import WithPolicyActions from 'consul-ui/mixins/policy/with-actions'; export default Route.extend(WithPolicyActions, { repo: service('repository/policy'), queryParams: { s: { as: 'filter', replace: true, }, }, model: function(params) { const repo = this.repo; return hash({ ...repo.status({ items: repo.findAllByDatacenter(this.modelFor('dc').dc.Name), }), isLoading: false, }); }, setupController: function(controller, model) { controller.setProperties(model); }, });