Merge remote-tracking branch 'origin/main' into add_list_media

This commit is contained in:
Dessalines 2024-03-25 11:25:09 -04:00
commit 1289af4556
3 changed files with 4 additions and 1 deletions

View file

@ -50,5 +50,6 @@
"style": "module",
"parser": "typescript"
}
}
},
"packageManager": "pnpm@8.15.5"
}

View file

@ -13,6 +13,7 @@ export interface CommentView {
community: Community;
counts: CommentAggregates;
creator_banned_from_community: boolean;
banned_from_community: boolean;
creator_is_moderator: boolean;
creator_is_admin: boolean;
subscribed: SubscribedType;

View file

@ -10,6 +10,7 @@ export interface PostView {
creator: Person;
community: Community;
creator_banned_from_community: boolean;
banned_from_community: boolean;
creator_is_moderator: boolean;
creator_is_admin: boolean;
counts: PostAggregates;