1 2 3 4 5 6 7 8 9 10 11import Route from '@ember/routing/route'; import { service } from '@ember/service'; export default class SettingsRoute extends Route { @service router; redirect() { this.router.replaceWith('settings.profile'); } }
1 2 3 4 5 6 7 8 9 10 11
import Route from '@ember/routing/route'; import { service } from '@ember/service'; export default class SettingsRoute extends Route { @service router; redirect() { this.router.replaceWith('settings.profile'); } }