Skip to content

Commit

Permalink
Add post route for tokenUrl
Browse files Browse the repository at this point in the history
  • Loading branch information
timuric committed Aug 21, 2024
1 parent 59dea4f commit 7b1aa00
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/app/api/demo-payment/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,3 +71,7 @@ export async function GET() {
],
});
}

export async function POST(_: Request) {
// During installation this path would be used to save app token that later can be used to authenticate requests. For example to manipulate checkout or orders.
}

0 comments on commit 7b1aa00

Please sign in to comment.