2015-02-12 21:22:32 -07:00
|
|
|
import Ember from 'ember';
|
2014-06-25 14:12:48 +02:00
|
|
|
|
2015-07-16 15:12:03 +01:00
|
|
|
export default Ember.Controller.extend({
|
|
|
|
appController: Ember.inject.controller('application'),
|
2015-05-25 21:10:50 -05:00
|
|
|
ghostPaths: Ember.inject.service('ghost-paths'),
|
|
|
|
|
2015-07-16 15:12:03 +01:00
|
|
|
showBackLink: Ember.computed.match('appController.currentRouteName', /^setup\.(two|three)$/),
|
2014-06-25 14:12:48 +02:00
|
|
|
|
2015-07-16 15:12:03 +01:00
|
|
|
backRoute: Ember.computed('appController.currentRouteName', function () {
|
|
|
|
var appController = this.get('appController'),
|
|
|
|
currentRoute = Ember.get(appController, 'currentRouteName');
|
2014-06-25 14:12:48 +02:00
|
|
|
|
2015-07-16 15:12:03 +01:00
|
|
|
return currentRoute === 'setup.two' ? 'setup.one' : 'setup.two';
|
|
|
|
})
|
2014-06-25 14:12:48 +02:00
|
|
|
});
|