24 lines
652 B
JavaScript
24 lines
652 B
JavaScript
import SingleRoute from 'consul-ui/routing/single';
|
|
import { inject as service } from '@ember/service';
|
|
import { hash } from 'rsvp';
|
|
|
|
import WithTokenActions from 'consul-ui/mixins/token/with-actions';
|
|
|
|
export default SingleRoute.extend(WithTokenActions, {
|
|
repo: service('repository/token'),
|
|
settings: service('settings'),
|
|
model: function(params, transition) {
|
|
return this._super(...arguments).then(model => {
|
|
return hash({
|
|
...model,
|
|
...{
|
|
token: this.settings.findBySlug('token'),
|
|
},
|
|
});
|
|
});
|
|
},
|
|
setupController: function(controller, model) {
|
|
controller.setProperties(model);
|
|
},
|
|
});
|