mirror of
https://github.com/astuto/astuto.git
synced 2025-12-16 03:37:56 +01:00
Add Redux and use it for state management
This commit is contained in:
@@ -2,13 +2,10 @@ interface IPost {
|
||||
id: number;
|
||||
title: string;
|
||||
description?: string;
|
||||
board_id: number;
|
||||
post_status_id?: number;
|
||||
user_id: number;
|
||||
created_at: string;
|
||||
|
||||
// associations
|
||||
postStatus?: any;
|
||||
boardId: number;
|
||||
postStatusId?: number;
|
||||
userId: number;
|
||||
createdAt: string;
|
||||
}
|
||||
|
||||
export default IPost;
|
||||
Reference in New Issue
Block a user