aboutsummaryrefslogtreecommitdiffstats
path: root/packages/trpc/routers/admin.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/trpc/routers/admin.ts')
-rw-r--r--packages/trpc/routers/admin.ts10
1 files changed, 2 insertions, 8 deletions
diff --git a/packages/trpc/routers/admin.ts b/packages/trpc/routers/admin.ts
index 0a0af173..05831b92 100644
--- a/packages/trpc/routers/admin.ts
+++ b/packages/trpc/routers/admin.ts
@@ -6,6 +6,7 @@ import {
LinkCrawlerQueue,
OpenAIQueue,
SearchIndexingQueue,
+ triggerSearchReindex,
} from "@hoarder/shared/queues";
import { adminProcedure, router } from "../index";
@@ -129,13 +130,6 @@ export const adminAppRouter = router({
},
});
- await Promise.all(
- bookmarkIds.map((b) =>
- SearchIndexingQueue.add("search_indexing", {
- bookmarkId: b.id,
- type: "index",
- }),
- ),
- );
+ await Promise.all(bookmarkIds.map((b) => triggerSearchReindex(b.id)));
}),
});