mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 19:27:52 +01:00
* It is now possible to follow a post in order to receive updates about it * Notifications are now sent when updates are published * Post status changes are now tracked * Update sidebar now shows the post status history * Mark a comment as a post update using the comment form * ... more ...
8 lines
170 B
TypeScript
8 lines
170 B
TypeScript
interface IPostStatusChangeJSON {
|
|
post_status_id: number;
|
|
user_full_name: string;
|
|
user_email: string;
|
|
updated_at: string;
|
|
}
|
|
|
|
export default IPostStatusChangeJSON; |