reply as new topic requires a post
This commit is contained in:
parent
55b300bae1
commit
7efd9359ec
|
@ -30,7 +30,11 @@ export default Ember.Controller.extend({
|
||||||
},
|
},
|
||||||
|
|
||||||
replyAsNewTopic() {
|
replyAsNewTopic() {
|
||||||
this.get("controllers.topic").send("replyAsNewTopic");
|
const topicController = this.get("controllers.topic");
|
||||||
|
const postStream = topicController.get("model.postStream");
|
||||||
|
const postId = postStream.findPostIdForPostNumber(this.get("postNumber"));
|
||||||
|
const post = postStream.findLoadedPost(postId);
|
||||||
|
topicController.send("replyAsNewTopic", post);
|
||||||
this.send("close");
|
this.send("close");
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue