Adding other is_banned fields.

This commit is contained in:
Dessalines 2024-03-25 13:36:38 -04:00
parent 600cfce337
commit 9074c34afe
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;
banned_from_community: boolean;
creator_is_moderator: boolean;
creator_is_admin: boolean;
subscribed: SubscribedType;

View file

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