mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-17 05:21:36 +03:00
8 lines
150 B
JavaScript
8 lines
150 B
JavaScript
|
var EditorRoute = Ember.Route.extend({
|
||
|
beforeModel: function () {
|
||
|
this.transitionTo('editor.new');
|
||
|
}
|
||
|
});
|
||
|
|
||
|
export default EditorRoute;
|