mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-16 02:05:04 +01:00
Check for payload.
This commit is contained in:
parent
fac306328d
commit
a7ea202785
@ -79,6 +79,10 @@ export default async (req: NextApiRequestCollect, res: NextApiResponse) => {
|
|||||||
|
|
||||||
const { type, payload } = getJsonBody<CollectRequestBody>(req);
|
const { type, payload } = getJsonBody<CollectRequestBody>(req);
|
||||||
|
|
||||||
|
if (!type || !payload) {
|
||||||
|
return badRequest(res);
|
||||||
|
}
|
||||||
|
|
||||||
req.yup = schema;
|
req.yup = schema;
|
||||||
await useValidate(req, res);
|
await useValidate(req, res);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user