mirror of https://github.com/rancher/ui.git
20 lines
411 B
JavaScript
20 lines
411 B
JavaScript
import Ember from 'ember';
|
|
|
|
export default Ember.Controller.extend({
|
|
queryParams: ['environmentId','serviceId','containerId','upgrade'],
|
|
environmentId: null,
|
|
serviceId: null,
|
|
containerId: null,
|
|
upgrade: null,
|
|
|
|
actions: {
|
|
done() {
|
|
return this.transitionToRoute('environment', this.get('model.service.environmentId'));
|
|
},
|
|
|
|
cancel() {
|
|
this.send('goToPrevious');
|
|
},
|
|
},
|
|
});
|