mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-11-26 06:11:14 +00:00
Adding creator_is_moderator to CommentReplyView and PersonMentionView.
This commit is contained in:
parent
b9ee189e55
commit
3d2b8f1428
2 changed files with 2 additions and 0 deletions
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue