fix: temp logs

This commit is contained in:
Matilda Landström
2024-05-15 13:51:40 +02:00
parent 74ff37008d
commit 3ba78986da

View File

@@ -53,7 +53,7 @@ export async function GET(
const invalidateResponse = await serverClient().user.invalidateSessions()
let redirectUrlValue
console.log(context.params.lang)
switch (context.params.lang) {
case Lang.da:
redirectUrlValue = env.SEAMLESS_LOGOUT_DA
@@ -74,7 +74,7 @@ export async function GET(
redirectUrlValue = env.SEAMLESS_LOGOUT_SV
break
}
console.log(redirectUrlValue)
const redirectUrl = new URL(redirectUrlValue)
redirectUrl.searchParams.set("returnurl", redirectTo)
redirectTo = redirectUrl.toString()
@@ -104,15 +104,15 @@ export async function GET(
process.env
)
console.log({ logout_signInURL: signOutURL })
console.log({ logout_signOutURL: signOutURL })
const redirectUrl = await signOut({
const redirectUrlObj = await signOut({
redirectTo,
redirect: false,
})
if (redirectUrl) {
return NextResponse.redirect(redirectUrl, {
console.log(redirectUrlObj)
if (redirectUrlObj) {
return NextResponse.redirect(redirectUrlObj.redirect, {
headers: redirectHeaders,
})
}