mirror of
https://github.com/fantasticit/think.git
synced 2026-09-01 15:10:55 +08:00
Merge pull request #136 from fantasticit/fix/search
This commit is contained in:
@@ -701,6 +701,7 @@ export class DocumentService {
|
||||
* @param keyword
|
||||
*/
|
||||
async search(user, organizationId, keyword) {
|
||||
const userId = user.id;
|
||||
const res = await this.documentRepo
|
||||
.createQueryBuilder('document')
|
||||
.andWhere('document.organizationId = :organizationId')
|
||||
@@ -712,7 +713,7 @@ export class DocumentService {
|
||||
|
||||
const ret = await Promise.all(
|
||||
res.map(async (doc) => {
|
||||
const auth = await this.authService.getAuth(user.Id, {
|
||||
const auth = await this.authService.getAuth(userId, {
|
||||
organizationId: doc.organizationId,
|
||||
wikiId: doc.wikiId,
|
||||
documentId: doc.id,
|
||||
|
||||
Reference in New Issue
Block a user