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