This commit is contained in:
adueck 2023-08-28 14:54:10 +04:00
parent a312879c1e
commit 05bb042f67
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ export async function getLingdocsUser(
export async function getAllLingdocsUsers(): Promise<T.LingdocsUser[]> {
const users = await usersDb.find({
selector: { userId: { $exists: true } },
selector: { feedback: { $exists: true } },
limit: 5000,
});
return users.docs as T.LingdocsUser[];