Adding back newest_comment_time to PostAggregates (#227)

Context: https://github.com/LemmyNet/lemmy/issues/4351

Co-authored-by: SleeplessOne1917 <28871516+SleeplessOne1917@users.noreply.github.com>
This commit is contained in:
Dessalines 2024-01-10 11:12:39 -05:00 committed by GitHub
parent b2b290b69b
commit fcee76937b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,4 +8,5 @@ export interface PostAggregates {
upvotes: /* integer */ number;
downvotes: /* integer */ number;
published: string;
newest_comment_time: string;
}