Add post list

This commit is contained in:
riggraz
2019-09-02 19:26:34 +02:00
parent edacfb1a4f
commit 86286b634d
13 changed files with 251 additions and 74 deletions

View File

@@ -6,6 +6,9 @@ interface IPost {
post_status_id?: number;
user_id: number;
created_at: string;
// associations
postStatus?: any;
}
export default IPost;