Display topic post: It is possible to like or dislike a topic comment when displaying it individually

This commit is contained in:
2019-08-22 09:22:16 -05:00
parent 98b85435ac
commit 52e55a24fa
2 changed files with 19 additions and 1 deletions

View File

@@ -138,6 +138,7 @@ class displayTopicPresenter(basePost.displayPostPresenter):
def show_comment(self, comment_index):
c = self.comments["items"][comment_index]
c["post_id"] = self.post["id"]
c["group_id"] = -1*self.group_id
a = displayTopicCommentPresenter(session=self.session, postObject=c, interactor=interactors.displayPostInteractor(), view=views.displayComment())
def load_more_comments(self):