Olyno
11/28/2022, 5:43 PMDYELbrah
11/28/2022, 7:25 PMAluminiumCaffeine
11/28/2022, 11:49 PMgaryaustin
11/29/2022, 12:43 AMAluminiumCaffeine
11/29/2022, 1:16 AMizurugi
11/29/2022, 6:16 AMDaniels
11/29/2022, 6:26 AMDaniels
11/29/2022, 6:27 AMstinkfire
11/29/2022, 7:09 AMloliboli
11/29/2022, 8:28 AMshafu
11/29/2022, 10:03 AMsilentworks
11/29/2022, 10:31 AMmadjar
11/29/2022, 12:52 PMAadarsh805
11/29/2022, 1:38 PMgaryaustin
11/29/2022, 2:19 PMAguilaair
11/29/2022, 6:21 PMabaum
11/29/2022, 6:55 PMcanceling statement due to statement timeout
on a function that when I run EXPLAIN ANALYZE should take <4s to complete. was just about to ask for debugging suggestions in the help channel.quick_piper15
11/29/2022, 7:24 PMts
export const action: ActionFunction = async ({ request, context }) => {
const formData = await request.formData();
const loginEmail = formData.get('email');
const loginPassword = formData.get('password');
const response = new Response();
const supabaseClient = createServerClient(
context.SUPABASE_URL as string,
context.SUPABASE_ANON_KEY as string,
{ request, response }
);
const { data, error } = await supabaseClient.auth.signInWithPassword({
email: String(loginEmail),
password: String(loginPassword),
});
const cookieHeader = response.headers.get('set-cookie')!;
response.headers.set('set-cookie', cookieHeader + '; Secure; HttpOnly');
console.log(response.headers.get('set-cookie')!);
return json(
{ data, error },
{
headers: response.headers,
}
);
};
websashka
11/29/2022, 9:25 PMsilentworks
11/30/2022, 12:22 AMZaDeR47
11/30/2022, 2:29 AMNanoBit
11/30/2022, 5:23 AMShichiha
11/30/2022, 7:01 AMShichiha
11/30/2022, 7:02 AMShichiha
11/30/2022, 7:02 AMsilentworks
11/30/2022, 11:14 AMSebboseb
11/30/2022, 11:27 AMJonte
11/30/2022, 5:29 PMsrb
12/01/2022, 4:21 AM