Merge remote-tracking branch 'origin' into feature/notifications

This commit is contained in:
2026-01-29 12:23:16 +01:00
9 changed files with 122 additions and 41 deletions

View File

@@ -541,6 +541,11 @@ public class DocumentApi extends BaseHandler implements DocumentService {
var userCompanyIds = companyService().listCompaniesOf(user).keySet();
var documents = db.find(userCompanyIds,keys,fulltext);
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
throw new RuntimeException(e);
}
return sendContent(ex,mapValues(documents));
}