Use _request data directly as rowData
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2022-02-14 13:40:44 +01:00
parent 51a4f68ce1
commit dcdb6d5fb9
2 changed files with 25 additions and 13 deletions

View File

@ -3,7 +3,18 @@ const fastify = require('fastify')({ logger: true })
// Declare a route
fastify.get('/', async (request, reply) => {
return { hello: 'world' }
return { data: [
{
component: 'VI_IT_VIRTUALIZATION',
version: '2.4.0',
os: 'vSphere 7.0U3a'
},
{
component: 'VI_IT_SRV_LIN_UBUNTU',
version: '1.3.0',
os: 'Ubuntu 18.04 LTS'
}
] }
})
// Run the server!