Unverified Commit 6a9671d7 authored by Kartheek Palla's avatar Kartheek Palla Committed by GitHub
Browse files

Merge pull request #242 from vaibhavbhuva/release-4.5.0

Issue #SB-23374 fix : question bulk upload status API issue fixes
Showing with 10 additions and 2 deletions
+10 -2
......@@ -201,10 +201,13 @@ const setError = (message) => {
const prepareQuestionData = (questionMetadata, req) => {
const requestedProperties = ['additionalCategories', 'board', 'medium', 'gradeLevel', 'subject', 'audience',
'license', 'framework', 'topic', 'author','status', 'createdBy', 'questionType', 'questionSetId'];
'license', 'framework', 'topic','status', 'createdBy', 'questionType', 'questionSetId'];
questionMetadata['questionFileRefId'] = uuidv4();
questionMetadata['channel'] = req.get('x-channel-id');
questionMetadata = _.merge({}, questionMetadata, _.pick(req.body.request, requestedProperties));
if(_.isEmpty(questionMetadata, 'author')) {
questionMetadata['author'] = _.get(req.body.request, 'author');
}
if(!_.has(questionMetadata, 'status')) {
questionMetadata['status'] = 'Live';
}
......@@ -221,7 +224,12 @@ const qumlSearch = (req, res) => {
"status":[],
"processId":req.body.request.processId
},
"fields":["identifier","processId","author","name","status","primaryCategory","questionUploadStatus","code","questionFileRefId"],
"fields":[
"identifier","processId","author","name","status","primaryCategory","questionUploadStatus","code","questionFileRefId",
'additionalCategories', 'board', 'medium', 'gradeLevel',
'subject', 'topic', 'learningOutcome','skill','keywords','audience','copyright', 'license', 'attributions',
'channel', 'framework', 'createdBy', 'createdOn', 'qType'
],
"limit":1000
}
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment