2
0
Files
bot/apps/builder/services/api/utils.ts
Baptiste Arnaud 54a641b819 Add Dashboard
2021-12-06 15:58:45 +01:00

5 lines
156 B
TypeScript

import { NextApiResponse } from 'next'
export const methodNotAllowed = (res: NextApiResponse) =>
res.status(405).json({ message: 'Method Not Allowed' })