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