0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-27 22:49:56 -05:00
ghost/core/client/routes/posts/post.js

13 lines
286 B
JavaScript
Raw Normal View History

2014-06-02 19:55:37 +01:00
var PostsPostRoute = Ember.Route.extend({
model: function (params) {
var post = this.modelFor('posts').findBy('id', params.post_id);
if (!post) {
this.transitionTo('posts.index');
}
return post;
}
});
2014-06-02 19:55:37 +01:00
export default PostsPostRoute;