Removed Postable proxies

This commit is contained in:
2018-11-01 17:05:55 +09:00
parent ae1bd6846d
commit 4779b492ec
6 changed files with 20 additions and 28 deletions

View File

@ -3,10 +3,10 @@ component Thread(thread *arn.Thread, posts []*arn.Post, user *arn.User)
#thread.thread(data-id=thread.ID)
.posts
Postable(thread.ToPostable(), user, "", thread.Creator().ID)
Postable(thread, user, "", thread.Creator().ID)
each post in posts
Postable(post.ToPostable(), user, "", thread.Creator().ID)
Postable(post, user, "", thread.Creator().ID)
//- Reply
if user != nil