mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-07 03:22:21 +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;
|