CherterB
12/22/2022, 3:35 AMcoleretriever
12/22/2022, 6:42 AMJim
12/22/2022, 10:42 AMv1olen
12/22/2022, 10:59 AMmendrinos
12/22/2022, 11:11 AMHuntedman
12/22/2022, 11:46 AMlewisd
12/22/2022, 12:28 PMchit
12/22/2022, 1:49 PMSolias
12/22/2022, 2:32 PMJaaneek
12/22/2022, 3:29 PMbattlesheep123
12/22/2022, 4:36 PMJason Creviston
12/22/2022, 4:55 PMPridgey
12/22/2022, 6:19 PMalxhbly
12/22/2022, 6:33 PMperry
12/22/2022, 6:49 PMNEXT_PUBLIC_SUPABASE_ANON_KEY
and we're concerned that it is exposed to the browser. How do we make sure that this does not enable access to our system? What does Row Level Security actually do and how can I make sure that it is enabled?Clay
12/22/2022, 6:58 PMaltryne
12/22/2022, 8:00 PMstrxkeskit
12/22/2022, 8:21 PMMichael Maust
12/22/2022, 8:32 PMHamburger
12/22/2022, 9:07 PManon
key with RLS which lets users subscribe to updates. It checks if their email is already exists in the table using the SELECT
operation but I only want to allow the user to check if their email exists in the table instead of allowing them to view every email stored. Is that possible to do?Cazineer
12/22/2022, 9:36 PMVik
12/22/2022, 10:14 PMzeedee
12/22/2022, 10:17 PMjs
serve(async (req) => {
const body = req.body.get();
const signature = req.headers.get('X-Samsara-Signature')
const timestamp = req.headers.get('X-Samsara-Timestamp')
return new Response(
{ headers: { "Content-Type": "application/json" } },
)
})
what is standard practice here? I now have a masters in streams, but I still can't get the result I want. which is to say, the request body.gerry
12/22/2022, 10:30 PMstefikira
12/22/2022, 11:31 PMfor (final schema in SupabaseSchemas.values) {
schemas[schema] = schemas[schema] == null || schemas[schema] is! SupabaseClient
? (await Supabase.initialize(url: endpoint, anonKey: anonKey, debug: kDebugMode)).client
: schemas[schema]!;
}
I guess it can be done by disposing of and re-init-ing the Supabase client every time a new query from another schema is needed, but this doesn't seem that pretty IMO.
Is this the normal way to do this? does this impact the performance or have any side effects? TY.Noah
12/22/2022, 11:43 PMVik
12/22/2022, 11:56 PMBigBrainVic
12/23/2022, 12:04 AMElfhild
12/23/2022, 12:47 AMuser8923
12/23/2022, 1:41 AM