2
0

feat(dashboard): 🛂 Limit create folder to Pro user

This commit is contained in:
Baptiste Arnaud
2022-02-12 10:23:58 +01:00
parent b1f54b77c6
commit 3a7b9a0c63
14 changed files with 333 additions and 10 deletions

View File

@ -27,7 +27,7 @@ const createCheckoutSession = async (
},
],
})
res.status(201).json(session)
res.status(201).send({ sessionId: session.id })
}
return methodNotAllowed(res)
}