a tool for shared writing and social publishing
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

properly check logged in token in oauth

+1
+1
app/api/oauth/[route]/route.ts
··· 62 62 let data = await supabaseServerClient 63 63 .from("email_auth_tokens") 64 64 .select("*, identities(*)") 65 + .eq("id", existingIdentity.value) 65 66 .single(); 66 67 if (data.data?.identity && data.data.confirmed) 67 68 await supabaseServerClient