mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-12 16:14:25 +03:00
7 lines
146 B
JavaScript
7 lines
146 B
JavaScript
|
var ContentRoute = Ember.Route.extend({
|
||
|
beforeModel: function () {
|
||
|
this.transitionTo('posts');
|
||
|
}
|
||
|
});
|
||
|
|
||
|
export default ContentRoute;
|