Ghost/core/client/routes/posts/post.js

13 lines
286 B
JavaScript
Raw Normal View History

2014-06-02 22:55:37 +04: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 22:55:37 +04:00
export default PostsPostRoute;