Implement basic version of likes

This commit is contained in:
riggraz
2019-09-27 16:57:23 +02:00
parent 5ee6a4afae
commit 80164178c2
11 changed files with 189 additions and 18 deletions

View File

@@ -4,7 +4,10 @@ interface IPostJSON {
description?: string;
board_id: number;
post_status_id?: number;
likes_count: number;
liked: number;
comments_count: number;
hotness: number;
user_id: number;
created_at: string;
}