a tool for shared writing and social publishing

indexed false by default

+2
+2
appview/index.ts
··· 107 107 let docResult = await supabase.from("documents").upsert({ 108 108 uri: evt.uri.toString(), 109 109 data: record.value as Json, 110 + indexed: false, 110 111 }); 111 112 if (docResult.error) console.log(docResult.error); 112 113 await inngest.send({ ··· 274 275 let docResult = await supabase.from("documents").upsert({ 275 276 uri: evt.uri.toString(), 276 277 data: record.value as Json, 278 + indexed: false, 277 279 }); 278 280 if (docResult.error) console.log(docResult.error); 279 281 await inngest.send({