ui/lib/istio/addon/gateway/detail/edit/controller.js

14 lines
247 B
JavaScript

import Controller from '@ember/controller';
export default Controller.extend({
actions: {
back() {
return this.transitionToRoute('project-istio.gateways.index');
},
cancel() {
this.send('goToPrevious');
},
},
});