mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 15:12:58 +03:00
9 lines
177 B
JavaScript
9 lines
177 B
JavaScript
import Ember from 'ember';
|
|
var EditorRoute = Ember.Route.extend({
|
|
beforeModel: function () {
|
|
this.transitionTo('editor.new');
|
|
}
|
|
});
|
|
|
|
export default EditorRoute;
|