https://supabase.com/ logo
Join Discord
Powered by
# off-topic
  • s

    Sophic

    11/29/2021, 2:20 AM
    Yea I think it is. I am just getting ~150ms of latency on getUser and then another 150ms latency on getting the profile for that user. then for my actual resource request another ~150ms of latency
  • a

    anothercoder

    11/29/2021, 2:22 AM
    Maybe they are releasing Supabase Functions this week, can check if using them is faster if they pass in the authenticated user in the request for u...
  • s

    Sophic

    11/29/2021, 2:23 AM
    Yea that might be a pretty cool way to solve it. Either way open to hearing if anyone else approached this any other way.
  • s

    silentworks

    11/29/2021, 9:10 AM
    Supabase Launch week is here people, are we all excited?
    c
    • 2
    • 2
  • c

    chipilov

    11/29/2021, 9:12 AM
    OMG OMG OMG
  • c

    chipilov

    11/29/2021, 9:12 AM
    šŸ˜†
  • s

    Strift

    11/29/2021, 10:47 AM
    it's launch week already
  • s

    Strift

    11/29/2021, 10:47 AM
    can't wait for the Twitter Spaces!
  • s

    Strift

    11/29/2021, 10:48 AM
    (ICYMI: https://twitter.com/supabase/status/1463885464142815242)
  • s

    silentworks

    11/29/2021, 3:29 PM
    Inner joins are coming to the
    supabase-js
    client library, this is great thanks for your work @User https://postgrest.org/en/v9.0/releases/v9.0.0.html#resource-embedding-with-top-level-filtering
  • s

    silentworks

    11/29/2021, 3:37 PM
    Thank you @User for your contributions to the Supabase Auth library, he has been adding many third party providers recently and is doing an awesome job.
  • s

    silentworks

    11/29/2021, 3:44 PM
    Python libraries are being updated by @User, @User and others.
  • h

    HarryET

    11/29/2021, 3:50 PM
    ā¤ļø more soonā„¢ļø
  • s

    silentworks

    11/29/2021, 3:56 PM
    RLS is coming for Realtime this launch week
  • l

    letourpowerscombine

    11/29/2021, 4:45 PM
    I have an app where
    users
    can subscribe to
    pages
    and submit
    comments
    on
    pages
    . I have a
    users
    table, a
    pages
    table, a
    users_pages
    table, and a
    comments
    table. I can currently pull a requested
    page
    , along with the
    users
    subscribed to it, with the following function. Is there anyway I can edit this to pull all of the
    comments
    for the requested page as well? Trying to fetch all of the
    page
    data in a single trip.
    Copy code
    javascript
     const { data, error } = await supabase
        .from('pages')
        .select(`*, users(id, email)`)
        .eq('slug', request.body.get('slug'))
    s
    s
    • 3
    • 9
  • l

    leynier

    11/29/2021, 6:52 PM
    Hi, where I can report an error in a blog post?
  • h

    HarryET

    11/29/2021, 7:07 PM
    You can create an issue!
  • l

    leynier

    11/29/2021, 7:21 PM
    I did a PR directly with the fixes
  • e

    e0

    11/29/2021, 9:04 PM
    Just a follow-up to this. I contacted the support yesterday and they got back to me this morning and fixed the issue soon afterwards. Apologies for not posting this in a thread but wanted to give a shoutout to the great email support.
  • b

    bent

    11/30/2021, 1:27 AM
    Can I create some users via the dashboard without having to associate email addresses or them having to create passwords or anything? I just want to use the Auth features to give different privileges to different clients, but I'm not planning to add account creation, login etc to my app
  • b

    bent

    11/30/2021, 1:29 AM
    ie - I have one IOT device that should only be able to insert data into a bucket And I have the public user that should only be able to read a certain type of data from a bucket and I want one other user that can interact with some table
  • u

    user

    11/30/2021, 3:18 AM
    Anyone know if you can bypass email verifications via dashboard/other. Wondering how this would work for E2E testing, seeding dummy users, etc. I want email verifications… but not for local dev and testing.
    Copy code
    clark@kent.com
    peter@parker.com
    bwayne@thebat.com
  • a

    anothercoder

    11/30/2021, 3:29 AM
    Dashboard > Auth > Settings, turn off "Enable email confirmations".
  • u

    user

    11/30/2021, 3:31 AM
    That would turn it off for the whole project. I’m more looking for dev | test VS production. Maintaining a second app seems overkill and tedious at scale.
  • a

    anothercoder

    11/30/2021, 3:32 AM
    Turn it on during production then...
  • u

    user

    11/30/2021, 3:33 AM
    ?! One does not simply stop developing once an app ships.
  • a

    anothercoder

    11/30/2021, 3:34 AM
    But u dont want to create separate projects...
  • u

    user

    11/30/2021, 3:35 AM
    Why would you want to maintain separate projects, policies, features when the only thing different is a test user account? Like I said, that’s tedious to keep in sync at scale.
  • a

    anothercoder

    11/30/2021, 3:38 AM
    I think u can try to suggest to Supabase. But the test user accts u just need to verify once, its a one-time confirmation...
  • a

    anothercoder

    11/30/2021, 3:40 AM
    Maybe u can ask how u can confirm the users manually via code/sql by writing into the user record.
1...147148149...392Latest