mirror of
https://github.com/CompassConnections/Compass.git
synced 2025-12-24 06:27:52 -05:00
4 lines
206 B
SQL
4 lines
206 B
SQL
create
|
|
or replace function public.firebase_uid () returns text language sql stable parallel SAFE as $function$
|
|
select nullif(current_setting('request.jwt.claims', true)::json->>'sub', '')::text;
|
|
$function$; |