Skip to content

Commit

Permalink
fix(utopia-remix) Add an endpoint for proxying PR branch deletion
Browse files Browse the repository at this point in the history
  • Loading branch information
Rheeseyb committed Feb 29, 2024
1 parent 5ab3b41 commit c5bb96e
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions utopia-remix/app/routes/internal.branch.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import { ActionFunctionArgs } from '@remix-run/node'
import { handle } from '../util/api.server'
import { proxy } from '../util/proxy.server'

export async function action(args: ActionFunctionArgs) {
return handle(args, {
DELETE: proxy,
})
}

0 comments on commit c5bb96e

Please sign in to comment.