diff --git a/apps/scandic-web/app/api/app/payment-callback/route.ts b/apps/scandic-web/app/api/app/payment-callback/route.ts new file mode 100644 index 000000000..1f2952e19 --- /dev/null +++ b/apps/scandic-web/app/api/app/payment-callback/route.ts @@ -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!") +}