credentials

This commit is contained in:
Oliver
2025-09-29 17:10:02 -03:00
parent 7958993195
commit ca5d552a86

View File

@@ -130,7 +130,8 @@ const webhookPost = webhookUrl + "/submit-data";
const res = await fetch(webhookUrl, {
method: "POST",
headers: {
"Content-Type": "application/json"
"Content-Type": "application/json",
"credentials": "include"
},
body: JSON.stringify({ uuid }) // send uuid in request body
});