fix: add route for app payment callback * fix: add route for app payment callback Approved-by: Michael Zetterberg
6 lines
230 B
TypeScript
6 lines
230 B
TypeScript
// App need to supply a callback url when initiating Planet and this route will be used for that.
|
|
// The user wont see this, since the webview will be closed before that
|
|
export function GET() {
|
|
return new Response("Success!")
|
|
}
|