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

    miko

    10/18/2021, 5:00 AM
    Here's the PR (WIP) but working great for my purposes already 😄 https://github.com/supabase/grid/pull/93
  • h

    HarryET

    10/20/2021, 6:43 AM
    @User Sorry to pester. Just wondered if this had been noticed?
  • s

    silentworks

    10/20/2021, 8:59 AM
    Can you refrain from pinging the Team role so often, if you posted a RFC on GitHub they have already been notified of that and someone will look at it in time, do remember it’s a small team and they have other things to prioritise.
  • h

    HarryET

    10/20/2021, 9:32 AM
    Sorry.
  • c

    copple

    10/20/2021, 2:24 PM
    Hey @User - we've definitely seen it! KM is looking into it - at the moment it's probably more of a feature request - the detail we need is really how to modify GoTrue to support it. But leave it with us. It's 100% something we will implement, it just depends how/when
  • h

    HarryET

    10/20/2021, 3:07 PM
    Ah thats fine. I know I spoke to KM who suggested the RFc and this was my first time. Any details that I could help with and I'd happily look into adding them to the document.
  • h

    HarryET

    10/22/2021, 9:21 AM
    Here is a PR for more OAuth Providers. Added 2 (slack, spotify) from the tweet that was put out, https://github.com/supabase/gotrue/pull/245
  • h

    HarryET

    10/22/2021, 9:54 AM
    \cc @User
  • k

    kernelsoe

    10/22/2021, 12:01 PM
    I'm wishing the same! @User I'd love to know if edge deploys like fly.io's https://fly.io/docs/reference/postgres/ is on consideration or roadmap?
  • y

    YelloJello

    10/23/2021, 10:32 AM
    Add
    throwOnError()
    to the reference section under
    Database
    in the docs with a few examples, I wasted a good couple hrs digging postgrest-js and fiddling with Proxies only to find that it was an issue that was solved a long time back. for context: - -
  • y

    YelloJello

    10/23/2021, 5:35 PM
    Also, has the team considered splitting the supabase-js lib into admin and client libs?
  • k

    kawallis

    10/24/2021, 9:52 PM
    Has the team considered adding Instagram as a oauth provider ?
  • a

    anand

    10/25/2021, 7:05 AM
    suggestion for the server itself: over at the Python discord server, we have a bot that scans messages for
    user/repo#number
    in messages, and automatically links the issue/PR mentioned in the message in the chat; which I find quite helpful for discussion while contributing. what do you think about having something like that here?
  • s

    Señor Bruno

    10/25/2021, 10:27 AM
    Any plans to introduce an "Insert or replace feature" for the storage functionality, so you don't have to make 2 calls. This is usefully if you want to replace i.e profile picture
  • z

    zeeshanok

    10/25/2021, 12:57 PM
    pretty sure thats called upsert
  • s

    Señor Bruno

    10/25/2021, 12:58 PM
    Sorry, I was not familiar with that term. Glad it is there already 😄
  • j

    jonny

    10/25/2021, 1:00 PM
    supabase.storage.from.update() https://supabase.io/docs/reference/javascript/storage-from-update
  • b

    bh

    10/26/2021, 10:30 AM
    Please allow static HTML sites to be hosted on Storage - this is useful for privacy policy pages and other sundry pages an app may require
    y
    • 2
    • 1
  • b

    bh

    10/26/2021, 10:30 AM
    at the moment, a html file gets served as plain text to web browsers
  • b

    bh

    10/26/2021, 10:30 AM
    e.g. https://rcymrjihsztzenrgtqfb.supabase.in/storage/v1/object/public/html/privacy-policy.html
  • y

    YelloJello

    10/28/2021, 10:08 AM
    Add a method to send a placeholder value to the supabase database server so that it can fill it with the timestamp when the server received the request. Kinda like firestore.FieldValue.serverTimestamp() For context: - https://firebase.google.com/docs/reference/js/v8/firebase.firestore.FieldValue
    s
    s
    • 3
    • 11
  • y

    YelloJello

    10/28/2021, 10:11 AM
    Uploading html files to storage
  • s

    Scott P

    10/28/2021, 2:02 PM
    Postgres has
    NOW()
    (https://www.postgresqltutorial.com/postgresql-now/) - Use that as a default value for a column if you need to set a timestamp
  • y

    YelloJello

    10/28/2021, 2:04 PM
    can you call now() from the client sdks? There are times when you have to set a timestamp after you've created a row, some times from the client, some times from the server
  • s

    Scott P

    10/28/2021, 2:20 PM
    I don't think it's possible purely with the client library. One solution could be to create an RPC function which accepts a parameter, such as the ID of the row you want to update, and then updates a specific column in that row with
    NOW()
    . You'd then call the function with
    .rpc()
    .
  • s

    silentworks

    10/28/2021, 3:21 PM
    Server Timestamp
  • h

    HarryET

    10/28/2021, 3:37 PM
    Would be could to have a Cloud Messaging Service/Notification Service similar to Firebase? I'd happily try work on it but just wouldn't know where to start (in terms on joining it with the existing infrastructure)😅
  • z

    Zeny

    10/28/2021, 4:30 PM
    👋 Noticed that the RESTful endpoint is using GET method to make all requests (server side), is there a way to switch to a POST one? It’s a big issue here if you want to find a list of indexed IDs using
    in
    method with additional query options as it breaks GET maxCharLimit 🥲
  • g

    garyaustin

    10/28/2021, 4:44 PM
    RPC function is probably fastest way to keep moving
  • z

    Zeny

    10/28/2021, 4:45 PM
    True true, but was looking for an alternative 😄
    g
    • 2
    • 4
1...151617...32Latest