mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-11-22 20:31:12 +00:00
Forgot creator_blocked from views
This commit is contained in:
parent
1cc174570c
commit
ce7744800d
1 changed files with 3 additions and 0 deletions
|
@ -73,6 +73,7 @@ export interface PostView {
|
|||
subscribed: boolean;
|
||||
saved: boolean;
|
||||
read: boolean;
|
||||
creator_blocked: boolean;
|
||||
my_vote?: number;
|
||||
}
|
||||
|
||||
|
@ -95,6 +96,7 @@ export interface CommentView {
|
|||
creator_banned_from_community: boolean;
|
||||
subscribed: boolean;
|
||||
saved: boolean;
|
||||
creator_blocked: boolean;
|
||||
my_vote?: number;
|
||||
}
|
||||
|
||||
|
@ -198,5 +200,6 @@ export interface PersonBlockView {
|
|||
export interface CommunityView {
|
||||
community: CommunitySafe;
|
||||
subscribed: boolean;
|
||||
blocked: boolean;
|
||||
counts: CommunityAggregates;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue