1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-09-21 18:21:36 +02:00

Add thread_member_lists to LazyRequest

This commit is contained in:
Paul Munteanu 2021-07-24 04:03:13 +03:00
parent 3e6e19e838
commit e1ffed7b4a
No known key found for this signature in database
GPG Key ID: 4C0797E4861E8917

View File

@ -5,6 +5,7 @@ export interface LazyRequest {
threads?: boolean; threads?: boolean;
typing?: true; typing?: true;
members?: any[]; members?: any[];
thread_member_lists?: any[];
} }
export const LazyRequest = { export const LazyRequest = {
@ -14,4 +15,5 @@ export const LazyRequest = {
$typing: Boolean, $typing: Boolean,
$threads: Boolean, $threads: Boolean,
$members: [] as any[], $members: [] as any[],
$thread_member_lists: [] as any[],
}; };