Middleware just on post
route
#14933
-
Hi people, const handler = nextConnect();
handler.use(databaseMiddleware);
handler.get(.........);
handler.post(.......);
export default handler I want to use my authorization middleware just for the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Hi! What about this?
|
Beta Was this translation helpful? Give feedback.
Hi! What about this?
handler.post('/', databaseMiddleware);