@tiledesk/tiledesk-server 2.10.21 → 2.10.22
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +3 -0
- package/package.json +1 -1
- package/routes/request.js +6 -1
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
package/routes/request.js
CHANGED
@@ -420,7 +420,12 @@ router.put('/:requestid/participants', function (req, res) {
|
|
420
420
|
// TODO make a synchronous chat21 version (with query parameter?) with request.support_group.created
|
421
421
|
router.delete('/:requestid/participants/:participantid', function (req, res) {
|
422
422
|
winston.debug(req.body);
|
423
|
-
|
423
|
+
console.log("\n/:requestid/participants/:participantid");
|
424
|
+
console.log("Body:", req.body);
|
425
|
+
console.log("Headers:", req.headers);
|
426
|
+
console.log("Full URL:", `${req.protocol}://${req.get('host')}${req.originalUrl}`);
|
427
|
+
console.log("Requestid:", req.params.requestid);
|
428
|
+
console.log("Participantid:", req.params.participantid);
|
424
429
|
//removeParticipantByRequestId(request_id, id_project, member)
|
425
430
|
return requestService.removeParticipantByRequestId(req.params.requestid, req.projectid, req.params.participantid).then(function (updatedRequest) {
|
426
431
|
|