Custom Routes

Next.js and Payload: 3.0 Beta Release
Next.js and Payload: 3.0 Beta Release
1
{
2
path: '/payload-2',
3
method: 'get',
4
handler: async (req, res) => {
5
await req.payload.findByID({
6
collection: 'posts',
7
id: 'document-id',
8
})
9
10
res.status(200).send('Payload 2.0')
11
},
12
}