https://supabase.com/ logo
Join Discord
Powered by
# ideas-and-suggestions
  • h

    HarryET

    12/20/2021, 9:37 PM
    I'll try open a PR to make it dynamic 🙂
  • h

    HarryET

    12/20/2021, 10:24 PM
    @User see this https://github.com/supabase/supabase/pull/4591
  • f

    florian-lefebvre

    12/21/2021, 12:42 PM
    I just left a comment
  • h

    HarryET

    12/21/2021, 12:52 PM
    Yeah, its broken cause the supabase team need to allow the vercel deployment 😦
  • h

    HarryET

    12/21/2021, 12:52 PM
    Sorry for the ping but \cc @User
  • e

    everconfusedguy

    12/21/2021, 12:55 PM
    Hey don't ping the team for PRs unless it's an urgent fix. We will looking at github issues and PRs everyday, so we will definitely get to it 🙂
  • h

    HarryET

    12/21/2021, 12:57 PM
    Ah sorry, now I know for future 🙂 Didn't see about when ping was ok in the rules. Sorry again 😦
  • e

    everconfusedguy

    12/21/2021, 12:58 PM
    No worries at all. Really appreciate your contributions💪🏼
  • h

    HarryET

    12/21/2021, 12:59 PM
    Thanks 🚀
  • m

    Mike_

    12/21/2021, 7:10 PM
    Would be extremely useful if supabase implemented transaction / batching functionality akin to firebase's. See: https://firebase.google.com/docs/firestore/manage-data/transactions
  • m

    Mike_

    12/21/2021, 7:12 PM
    Not fun / dev-friendly to have to write an RPC for every atomic operation you want to do 😄
  • c

    chipilov

    12/21/2021, 7:51 PM
    Related discussion and issue: https://github.com/supabase/supabase/discussions/526 and https://github.com/supabase/supabase-js/issues/87#issuecomment-739537955
  • m

    Mike_

    12/21/2021, 11:08 PM
    added to discussion https://github.com/supabase/supabase/discussions/526#discussioncomment-1855387
  • d

    Deleted User

    12/22/2021, 7:06 PM
    Is Supabase getting app analytics? If not, that's a suggestion.
  • d

    Deleted User

    12/22/2021, 7:19 PM
    Also, the ability to change the required password length might be nice
  • s

    silentworks

    12/24/2021, 11:30 AM
    Please stop having conversations in this channel, create a thread and have your conversations in that. This channel is meant for suggestions and ideas for Supabase. I will be deleting any messages unrelated to Supabase.
  • t

    thyme

    12/25/2021, 6:17 PM
    Rolling the secret jwt token would be very good
  • g

    Gary, el Pingüino Artefacto

    12/25/2021, 6:29 PM
    Maybe plans for making aggregations with the select method (like SUM(salary))
  • k

    Kilian

    12/27/2021, 3:32 PM
    Hey folks! the support page is broken and returns 500 error codes.
    s
    c
    • 3
    • 5
  • s

    silentworks

    12/28/2021, 1:03 PM
    Please don't @ individuals from the team, members of the team actively watch this channel and take note of what is posted
  • s

    silentworks

    12/28/2021, 1:03 PM
    Support page broken
  • m

    Mike_

    12/28/2021, 4:48 PM
    I suggest adding the ability to query (read-only) the auth.users table directly with a service key. Many production apps need this ability...
    Copy code
    js
    // In my case, I need to add additional users as 'owners' of a record using their email address
    
    // Find user by email
    const { data, error } = await supabase
      .from('auth.users') // Not possible now
      .select()
      .eq('email', 'user@gmail.com')
    
    // Then use the user's data for some business logic
    Some developers have used workarounds like creating a public.users table which replicates relevant data from the auth.users table using triggers. This feels like a hacky workaround to me... I would much rather avoid this unnecessary redundancy / potential for data inconsistency down the line. (See: https://nikofischer.com/supabase-how-to-query-users-table) Edit: I've copied this feature request to the git repo: https://github.com/supabase/supabase/issues/4715
    s
    h
    • 3
    • 6
  • l

    leviwhalen

    12/28/2021, 11:54 PM
    I can see how you view that as a workaround but couldn’t you consider it a benefit to separate the actual db auth and functionality from your app’s permissions? Seems like you could easily get into a risky situation without an intentional abstraction.
  • h

    HarryET

    12/29/2021, 12:06 AM
    Using triggers is the best way! Even though it's data duplicated it still is safer as you can use RLS and your not accessing the GoTrue service's data on its own
  • s

    silentworks

    12/29/2021, 2:04 AM
    Querying auth.users with service key
  • k

    ktosiek

    12/29/2021, 1:22 PM
    Idea: document what
    .setAuth()
    doesn't do - I see people trying to use it like it's an API for signing in with access_token, when it seems to be a very low level tool.
    h
    • 2
    • 4
  • h

    HarryET

    12/29/2021, 1:50 PM
    .setAuth docs
  • o

    Olyno

    01/02/2022, 6:31 PM
    Enable commands /user-info and /server-info for everyone (suggestion from @User)
  • h

    Hal

    01/05/2022, 4:29 PM
    It would be nice if there's an api to trigger sending email confirmation, since I've set my smtp server and templates
  • a

    andyouareagone

    01/05/2022, 7:45 PM
    It would be nice to have a click click click interface to duplicate project or migrate project, so to easily have an updated stable/production project mirroring dev
1...192021...32Latest