Adding creator_is_moderator to CommentReplyView and PersonMentionView.

This commit is contained in:
Dessalines 2023-11-02 14:05:09 -04:00
parent b9ee189e55
commit 3d2b8f1428
2 changed files with 2 additions and 0 deletions

View file

@ -16,6 +16,7 @@ export interface CommentReplyView {
recipient: Person;
counts: CommentAggregates;
creator_banned_from_community: boolean;
creator_is_moderator: boolean;
subscribed: SubscribedType;
saved: boolean;
creator_blocked: boolean;

View file

@ -16,6 +16,7 @@ export interface PersonMentionView {
recipient: Person;
counts: CommentAggregates;
creator_banned_from_community: boolean;
creator_is_moderator: boolean;
subscribed: SubscribedType;
saved: boolean;
creator_blocked: boolean;