30 lines
756 B
JavaScript
30 lines
756 B
JavaScript
import Route from '@ember/routing/route';
|
|
import { inject as service } from '@ember/service';
|
|
import { hash } from 'rsvp';
|
|
import { get } from '@ember/object';
|
|
|
|
import WithAclActions from 'consul-ui/mixins/acl/with-actions';
|
|
|
|
export default Route.extend(WithAclActions, {
|
|
repo: service('acls'),
|
|
queryParams: {
|
|
s: {
|
|
as: 'filter',
|
|
replace: true,
|
|
},
|
|
},
|
|
beforeModel: function(transition) {
|
|
return this.replaceWith('dc.acls.tokens');
|
|
},
|
|
model: function(params) {
|
|
return hash({
|
|
isLoading: false,
|
|
items: get(this, 'repo').findAllByDatacenter(this.modelFor('dc').dc.Name),
|
|
});
|
|
},
|
|
setupController: function(controller, model) {
|
|
this._super(...arguments);
|
|
controller.setProperties(model);
|
|
},
|
|
});
|