chore: debug
This commit is contained in:
parent
d7dec27d56
commit
1a6d840a4a
1 changed files with 4 additions and 0 deletions
|
@ -1,6 +1,10 @@
|
||||||
export default async (context, request) => {
|
export default async (context, request) => {
|
||||||
console.log(context)
|
console.log(context)
|
||||||
console.log(request)
|
console.log(request)
|
||||||
|
const data = await request.formData()
|
||||||
|
console.log(data)
|
||||||
|
const payload = JSON.parse(data.get('payload'))
|
||||||
|
console.log(payload)
|
||||||
|
|
||||||
return new Response(JSON.stringify({
|
return new Response(JSON.stringify({
|
||||||
status: 'success',
|
status: 'success',
|
||||||
|
|
Reference in a new issue