(pluginId: string)
| 229 | } |
| 230 | |
| 231 | async function markScanning(pluginId: string) { |
| 232 | const supabase = await createClient(); |
| 233 | await supabase |
| 234 | .from("plugins") |
| 235 | .update({ scan_status: "scanning" }) |
| 236 | .eq("id", pluginId); |
| 237 | } |
| 238 | |
| 239 | /** |
| 240 | * Top-N active plugins with a name trigram-similar to this one. |
no test coverage detected