mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-25 03:44:29 +03:00
8 lines
249 B
JavaScript
8 lines
249 B
JavaScript
|
import Route from '@ember/routing/route';
|
||
|
|
||
|
export default class InstallThemeRoute extends Route {
|
||
|
redirect(model, transition) {
|
||
|
this.transitionTo('settings.design.change-theme.install', {queryParams: transition.to.queryParams});
|
||
|
}
|
||
|
}
|