mirror of https://github.com/hashicorp/consul
17 lines
435 B
JavaScript
17 lines
435 B
JavaScript
import Route from 'consul-ui/routing/route';
|
|||
import { inject as service } from '@ember/service';
|
|||
import { hash } from 'rsvp';
|
|||
import { get } from '@ember/object';
|
|||
|
|||
export default Route.extend({
|
|||
repo: service('repository/dc'),
|
|||
model: function(params) {
|
|||
return hash({
|
|||
item: this.repo.getActive(),
|
|||
});
|
|||
},
|
|||
afterModel: function({ item }, transition) {
|
|||
this.transitionTo('dc.services', get(item, 'Name'));
|
|||
},
|
|||
});
|