-
-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow http DELETE #63
Comments
See also #77 . Lack of DELETE makes it impossible to use pg_net to clean up supabase storage objects in UPDATE/DELETE Postgres triggers. Or am I missing something? |
Can be used on v0.7 as: select net.http_delete(
url:='https://httpbin.org/delete'
, params:= '{"param-foo": "bar"}'
, headers:= '{"X-Baz": "foo"}'
); This will be deployed to Supabase soon. |
Is |
@GaryAustin1 Not supported, will track it on #77 |
Feature request
Is your feature request related to a problem? Please describe.
We want to send a delete request to a serverless function within a Nextjs api to trigger the deletion of the entity at an external provider after it was deleted in our database.
Describe the solution you'd like
Support http delete in addition to post and get.
Describe alternatives you've considered
Adding another endpoint, e.g. /delete, and sending a post request there
The text was updated successfully, but these errors were encountered: