mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-21 01:41:46 +03:00
8 lines
197 B
JavaScript
8 lines
197 B
JavaScript
|
var SettingsIndexRoute = Ember.Route.extend({
|
||
|
// redirect to general tab
|
||
|
redirect: function () {
|
||
|
this.transitionTo('settings.general');
|
||
|
}
|
||
|
});
|
||
|
|
||
|
export default SettingsIndexRoute;
|