tangled
alpha
login
or
join now
leaflet.pub
/
leaflet
289
fork
atom
a tool for shared writing and social publishing
289
fork
atom
overview
issues
27
pulls
pipelines
indexed false by default
awarm.space
1 month ago
fc660a92
44da33e4
+2
1 changed file
expand all
collapse all
unified
split
appview
index.ts
+2
appview/index.ts
···
107
let docResult = await supabase.from("documents").upsert({
108
uri: evt.uri.toString(),
109
data: record.value as Json,
0
110
});
111
if (docResult.error) console.log(docResult.error);
112
await inngest.send({
···
274
let docResult = await supabase.from("documents").upsert({
275
uri: evt.uri.toString(),
276
data: record.value as Json,
0
277
});
278
if (docResult.error) console.log(docResult.error);
279
await inngest.send({
···
107
let docResult = await supabase.from("documents").upsert({
108
uri: evt.uri.toString(),
109
data: record.value as Json,
110
+
indexed: false,
111
});
112
if (docResult.error) console.log(docResult.error);
113
await inngest.send({
···
275
let docResult = await supabase.from("documents").upsert({
276
uri: evt.uri.toString(),
277
data: record.value as Json,
278
+
indexed: false,
279
});
280
if (docResult.error) console.log(docResult.error);
281
await inngest.send({