feat: first cut at the import execution

This commit is contained in:
2026-02-14 20:49:43 +01:00
parent 973d6af231
commit b036cf3c46
13 changed files with 5130 additions and 5 deletions

View File

@@ -100,8 +100,9 @@ export class PostEngine extends EventEmitter {
* Stores the stemmed content (combining title, excerpt, content, tags, categories).
* Includes project_id for project-scoped search.
* Only the post ID is returned from searches - actual post data comes from DB/files.
* Public to allow ImportExecutionEngine to index imported posts directly.
*/
private async updateFTSIndex(post: {
async updateFTSIndex(post: {
id: string;
projectId: string;
title: string;