Merged in fix/add-route-for-app-callback (pull request #1810)

fix: add route for app payment callback

* fix: add route for app payment callback


Approved-by: Michael Zetterberg
This commit is contained in:
Tobias Johansson
2025-04-16 07:34:27 +00:00
parent af182b49d8
commit 12cebd9c1c

View File

@@ -0,0 +1,5 @@
// 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!")
}