Alaanor
02/06/2023, 9:29 AMsupabase.rpc('foobar_function')
drgonxoo
02/06/2023, 9:55 AMgab_feudo
02/06/2023, 10:18 AMresetPasswordForEmail
I receive a link to my inbox but this link gives an error when opened.
Link is somethink like that:
https://[myProjectId].supabase.co/auth/v1/verify?token=c91a7fc0[...]ecea7e8&type=recovery&redirect_to=https://[myProjectId].supabase.co
When clicking on it, I get redirected to https://[myProjectId].supabase.co/#error=unauthorized_client&error_code=401&error_description=Email+link+is+invalid+or+has+expired with this response: {
"message": "No API key found in request",
"hint": "No apikey request header or url param was found."
}
Oenu
02/06/2023, 10:30 AMsql
-- The function that prevents users from seeing the owner of a group
CREATE POLICY "Group members should not be able to see the owners personal ID"
ON "group" FOR SELECT
USING ( auth.uid() != owner )
WITH (security_barrier = true)
AS
SELECT * FROM public.group
WHERE owner IS NOT NULL;
davidR
02/06/2023, 11:03 AMProfile
model that is linked to Supabase Auth through the user id PK or something, but just wanted to have a confirmation.
Thank you very much for your time.
PS : I just want to use Supabase for its auth capabilities as of now.iWeeti
02/06/2023, 11:16 AMImposer
02/06/2023, 12:33 PMjensgm
02/06/2023, 12:35 PMbkyerv
02/06/2023, 12:35 PMbaderdean
02/06/2023, 12:57 PMTarky
02/06/2023, 12:58 PMemail
and password
and I keep receiving this CORSdecruz
02/06/2023, 1:03 PMArthesius
02/06/2023, 2:49 PMhttps
, but only ws
or wss
, but I can't find anything in my supabase project that has helped me find a different url.Kilian
02/06/2023, 3:06 PMsupabase.auth.signInWithPassword
.
The auth-helper-remix has login done client side but I'd rather keep that server-side. Is that possible?Al Mamun
02/06/2023, 3:42 PMsupabase-js
or any other SDK code inside the Supabase dashboard (just like SQL Editor)?
If not, Why?19
02/06/2023, 3:47 PMKehvyn
02/06/2023, 4:38 PMGaëtan 🐈
02/06/2023, 4:45 PMAtrox
02/06/2023, 5:44 PMts
const { data, error } = await supabase
.from('projects')
.insert({ title: "Test's" })
.select()
.single();
The simple insert above is failing with this error:
{
code: '42601',
details: null,
hint: null,
message: 'syntax error at or near "s"'
}
For this example, projects is defined as:
ts
type Project = {
id: uuid;
title: text;
}
Vengeance
02/06/2023, 6:10 PMtommycox
02/06/2023, 6:34 PMNosferatu
02/06/2023, 7:12 PMsupabase_admin
through TLS (and it was not from a private IP such as 172.17.X.X)
Should I worry or was an internal Supabase employee trying to help the support when I communicated about the former attempts?
Best regardsSepharo
02/06/2023, 7:33 PMYO Apps
02/06/2023, 7:44 PM(EXISTS ( SELECT 1
FROM Table2
WHERE (Table2.Department_Name = Department_Name )))
but it seems I dont have access to the JSON . How may I form my policy to solve this?rodbs
02/06/2023, 7:52 PMoutcome": "canceled",
in Cloudflare for a POST webhook request.
I've replicated the webhook in Postman and it works perfectly everytime, but it last between 600ms and 1300ms.
Is there a timeout that's dropping the client request at Supabase? I've checked the doc and it says the timeout is ignored.Roko
02/06/2023, 8:10 PMtsnakejake
02/06/2023, 9:21 PM[
{
type: 'Purchase',
id: 1
},
{
type: 'Withdraw',
id: 2
}
]
I want to only get objects that have a type of 'Purchase'drewbie
02/06/2023, 9:21 PMpg_graphl
extension to its latest version (1.1.0
) -- instead its installing 0.5.0
after I spin up a local environment and run SELECT *
FROM pg_extension;
in the local Studio.
I couldn't find a version of that particular extension in the CLI repo and am still confused how these things piece together. Any help on getting 1.1.0 installed locally would be appreciated!
ThanksLuke
02/06/2023, 9:50 PMArfizato
02/06/2023, 10:12 PMconst { data: Members, error } = await supabase.from('Members').select('*')
and it works but then gets overridden by the error for some reason. i tried looking for error or even the code (18) that came with it, but found nothing.
In the traceback, there is a mention of Auth but I haven't used auth at all.
I have used supabase before with vanilla js and didn't face this problem