Skip to content

Instantly share code, notes, and snippets.

@Juraj-Sulimanovic
Created April 5, 2024 10:37
Show Gist options
  • Save Juraj-Sulimanovic/e257361f7eaf2b57bbfd7c90455eac20 to your computer and use it in GitHub Desktop.
Save Juraj-Sulimanovic/e257361f7eaf2b57bbfd7c90455eac20 to your computer and use it in GitHub Desktop.
if (req.method !== 'POST') {
res.status(405).json({ error: 'Method not allowed' });
return;
}
if (!question) {
return res.status(400).json({ message: 'No question in the request' });
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment