tango-app-api-task 3.4.0-alpha-2 → 3.4.0-alpha-4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tango-app-api-task",
3
- "version": "3.4.0-alpha-2",
3
+ "version": "3.4.0-alpha-4",
4
4
  "description": "Task",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -1092,7 +1092,7 @@ export async function taskConfig( req, res ) {
1092
1092
  client_id: inputBody.clientId,
1093
1093
  createAt: new Date(),
1094
1094
  sourceCheckList_id: configDetails._id,
1095
- checkListName: configDetails.checkListName,
1095
+ checkListName: checklistDetails.checkListName,
1096
1096
  fromCheckListName: '',
1097
1097
  type: 'task',
1098
1098
  action: 'updated',
@@ -1140,7 +1140,7 @@ export async function taskConfig( req, res ) {
1140
1140
  client_id: inputBody.client_id,
1141
1141
  createAt: new Date(),
1142
1142
  sourceCheckList_id: inputBody._id,
1143
- checkListName: inputBody.checkListName,
1143
+ checkListName: checklistDetails.checkListName,
1144
1144
  fromCheckListName: '',
1145
1145
  type: 'task',
1146
1146
  action: inputBody.publish ? 'published' : 'unpublished',