mirror of https://github.com/rancher/ui.git
16 lines
347 B
JavaScript
16 lines
347 B
JavaScript
import { equal } from '@ember/object/computed';
|
|
import Controller from '@ember/controller';
|
|
import C from 'ui/utils/constants';
|
|
|
|
export default Controller.extend({
|
|
isCaas : equal('app.mode',C.MODE.CAAS),
|
|
newPassword: null,
|
|
|
|
actions: {
|
|
done() {
|
|
window.history.back();
|
|
//this.send('goToPrevious');
|
|
}
|
|
},
|
|
});
|