Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
UPSMF
program-service
Commits
7444e1ff
Commit
7444e1ff
authored
3 years ago
by
Vaibhav
Browse files
Options
Download
Patches
Plain Diff
Issue #SB-23374 fix : question bulk upload status API issue fixes
parent
1a14348c
SB-23374
dependabot/npm_and_yarn/src/async-2.6.4
dependabot/npm_and_yarn/src/axios-0.21.2
dependabot/npm_and_yarn/src/decode-uri-component-0.2.2
dependabot/npm_and_yarn/src/jsonwebtoken-9.0.0
dependabot/npm_and_yarn/src/lodash-4.17.21
dependabot/npm_and_yarn/src/moment-2.29.4
dependabot/npm_and_yarn/src/moment-timezone-0.5.37
dependabot/npm_and_yarn/src/node-fetch-2.6.7
dependabot/npm_and_yarn/src/qs-and-body-parser-and-express-6.5.3
dependabot/npm_and_yarn/src/redis-3.1.1
dependabot/npm_and_yarn/src/simple-get-2.8.2
dependabot/npm_and_yarn/src/underscore-1.12.1
master
release-4.5.0
release-4.6.0
release-4.7.0
release-4.8.0
release-4.9.0
release-5.1.0
test-issue
release-5.1.0_RC1
release-4.9.0_RC1
release-4.8.0_RC3
release-4.8.0_RC2
release-4.8.0_RC1
release-4.7.0_RC6
release-4.7.0_RC5
release-4.7.0_RC4
release-4.7.0_RC3
release-4.7.0_RC2
release-4.7.0_RC1
release-4.6.0_RC6
release-4.6.0_RC5
release-4.6.0_RC4
release-4.6.0_RC3
release-4.6.0_RC2
release-4.6.0_RC1
release-4.5.0_RC1
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/service/qumlBulkService.js
+10
-2
src/service/qumlBulkService.js
with
10 additions
and
2 deletions
+10
-2
src/service/qumlBulkService.js
+
10
−
2
View file @
7444e1ff
...
...
@@ -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
}
}
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets