mirror of
https://github.com/sasjs/server.git
synced 2026-01-04 05:20:06 +00:00
fix(deploy): fix payload processing
This commit is contained in:
@@ -43,6 +43,6 @@
|
|||||||
},
|
},
|
||||||
"configuration": {
|
"configuration": {
|
||||||
"sasPath": "/opt/sas/sas9/SASHome/SASFoundation/9.4/sas",
|
"sasPath": "/opt/sas/sas9/SASHome/SASFoundation/9.4/sas",
|
||||||
"sasJsPort": 5005
|
"sasJsPort": 5000
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ router.get('/', async (_, res) => {
|
|||||||
})
|
})
|
||||||
|
|
||||||
router.post('/deploy', async (req, res) => {
|
router.post('/deploy', async (req, res) => {
|
||||||
if (!isFileTree({ members: req.body.members })) {
|
if (!isFileTree(req.body.fileTree)) {
|
||||||
res.status(400).send({
|
res.status(400).send({
|
||||||
status: 'failure',
|
status: 'failure',
|
||||||
message: 'Provided not supported data format.',
|
message: 'Provided not supported data format.',
|
||||||
@@ -34,7 +34,7 @@ router.post('/deploy', async (req, res) => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
await createFileTree(
|
await createFileTree(
|
||||||
req.body.members,
|
req.body.fileTree.members,
|
||||||
req.body.appLoc ? req.body.appLoc.replace(/^\//, '').split('/') : []
|
req.body.appLoc ? req.body.appLoc.replace(/^\//, '').split('/') : []
|
||||||
)
|
)
|
||||||
.then(() => {
|
.then(() => {
|
||||||
|
|||||||
Reference in New Issue
Block a user