2018-05-22 15:03:45 +00:00
|
|
|
import Route from '@ember/routing/route';
|
|
|
|
import { inject as service } from '@ember/service';
|
|
|
|
import { hash } from 'rsvp';
|
|
|
|
|
2018-05-23 10:34:02 +00:00
|
|
|
import WithIntentionActions from 'consul-ui/mixins/intention/with-actions';
|
|
|
|
|
|
|
|
export default Route.extend(WithIntentionActions, {
|
2018-10-26 16:36:15 +00:00
|
|
|
repo: service('repository/intention'),
|
2018-05-22 15:03:45 +00:00
|
|
|
queryParams: {
|
2020-05-29 15:42:46 +00:00
|
|
|
filterBy: {
|
2020-02-19 19:26:38 +00:00
|
|
|
as: 'action',
|
|
|
|
},
|
2020-05-29 15:42:46 +00:00
|
|
|
search: {
|
2018-05-22 15:03:45 +00:00
|
|
|
as: 'filter',
|
|
|
|
replace: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
model: function(params) {
|
|
|
|
return hash({
|
2019-12-17 18:47:37 +00:00
|
|
|
items: this.repo.findAllByDatacenter(
|
|
|
|
this.modelFor('dc').dc.Name,
|
|
|
|
this.modelFor('nspace').nspace.substr(1)
|
|
|
|
),
|
2018-05-22 15:03:45 +00:00
|
|
|
});
|
|
|
|
},
|
|
|
|
setupController: function(controller, model) {
|
|
|
|
controller.setProperties(model);
|
|
|
|
},
|
|
|
|
});
|