import Route from 'consul-ui/routing/route'; import { inject as service } from '@ember/service'; import { hash } from 'rsvp'; import WithRoleActions from 'consul-ui/mixins/role/with-actions'; export default Route.extend(WithRoleActions, { repo: service('repository/role'), queryParams: { sortBy: 'sort', search: { as: 'filter', replace: true, }, }, model: function(params) { return hash({ ...this.repo.status({ items: this.repo.findAllByDatacenter( this.modelFor('dc').dc.Name, this.modelFor('nspace').nspace.substr(1) ), }), }); }, setupController: function(controller, model) { this._super(...arguments); controller.setProperties(model); }, });