Ghost/ghost/admin/app/controllers/setup.js
Kevin Ansfield f07940f0e7 Collapsed @service injection definitions to single-line style
no issue

- find+replace to make service injection style consistent and take up much less space at the top of files that used multi-line syntax
2022-02-01 17:03:54 +00:00

23 lines
684 B
JavaScript

import classic from 'ember-classic-decorator';
import {computed} from '@ember/object';
import {match} from '@ember/object/computed';
import {inject as service} from '@ember/service';
/* eslint-disable ghost/ember/alias-model-in-controller */
import Controller from '@ember/controller';
@classic
export default class SetupController extends Controller {
@service ghostPaths;
@service router;
@match('router.currentRouteName', /^setup\.(two|three)$/)
showBackLink;
@computed('router.currentRouteName')
get backRoute() {
let currentRoute = this.router.currentRouteName;
return currentRoute === 'setup.two' ? 'setup.one' : 'setup.two';
}
}