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
knowledge-platform
Commits
19f13761
Unverified
Commit
19f13761
authored
2 years ago
by
Mahesh Kumar Gangula
Committed by
GitHub
2 years ago
Browse files
Options
Download
Plain Diff
Merge pull request #828 from krgauraw/release-4.9.0
Issue #SB-29666 fix: updated config to restrict props
parents
2a1abf5d
00ceb6ba
release-5.3.0
AmiableAnil-patch-1
Gcloud_copy
Gcloud_fix
Remove_unwantedCode_Gcloud_fix
bulk-upload-comptenecy-mapping
bulk-upload-excelsheet
bulk-upload-test_excel
bulk_upload
csp-migration
dependabot/maven/platform-core/platform-telemetry/ch.qos.logback-logback-core-1.2.9
dependabot/maven/search-api/search-core/org.apache.httpcomponents-httpclient-4.5.13
knowlg-friday
knowlg-oneclick
local-setup-kube
master
patch-1
patch-2
patch-3
poc_bulk_upload
qs-schema
rahul_bulk_upload_postgres
release-4.10.0
release-4.10.1
release-4.9.0
release-4.9.1
release-5.0.0
release-5.0.1
release-5.1.0
release-5.1.0-content
release-5.2.0
release-5.2.0_RC2
release-5.2.0_RC1
release-5.1.0_RC1
release-5.0.0_RC2
release-5.0.0_RC1
release-4.10.0_RC2
release-4.10.0_RC1
release-4.9.1_RC1
release-4.9.0_RC8
release-4.9.0_RC7
release-4.9.0_RC6
release-4.9.0_RC5
release-4.9.0_RC4
release-4.9.0_RC3
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
assessment-api/assessment-actors/src/main/scala/org/sunbird/managers/AssessmentManager.scala
+2
-0
...c/main/scala/org/sunbird/managers/AssessmentManager.scala
schemas/question/1.0/config.json
+1
-0
schemas/question/1.0/config.json
schemas/questionset/1.0/config.json
+2
-1
schemas/questionset/1.0/config.json
with
5 additions
and
1 deletion
+5
-1
assessment-api/assessment-actors/src/main/scala/org/sunbird/managers/AssessmentManager.scala
+
2
−
0
View file @
19f13761
...
...
@@ -12,6 +12,7 @@ import org.sunbird.graph.nodes.DataNode
import
org.sunbird.graph.utils.NodeUtil
import
org.sunbird.telemetry.logger.TelemetryManager
import
org.sunbird.telemetry.util.LogTelemetryEventUtil
import
org.sunbird.utils.RequestUtil
import
scala.concurrent.
{
ExecutionContext
,
Future
}
import
scala.collection.JavaConversions._
...
...
@@ -27,6 +28,7 @@ object AssessmentManager {
val
visibility
:
String
=
request
.
getRequest
.
getOrDefault
(
"visibility"
,
""
).
asInstanceOf
[
String
]
if
(
StringUtils
.
isNotBlank
(
visibility
)
&&
StringUtils
.
equalsIgnoreCase
(
visibility
,
"Parent"
))
throw
new
ClientException
(
errCode
,
"Visibility cannot be Parent!"
)
RequestUtil
.
restrictProperties
(
request
)
DataNode
.
create
(
request
).
map
(
node
=>
{
val
response
=
ResponseHandler
.
OK
response
.
putAll
(
Map
(
"identifier"
->
node
.
getIdentifier
,
"versionKey"
->
node
.
getMetadata
.
get
(
"versionKey"
)).
asJava
)
...
...
This diff is collapsed.
Click to expand it.
schemas/question/1.0/config.json
+
1
−
0
View file @
19f13761
...
...
@@ -9,6 +9,7 @@
},
"restrictProps"
:
{
"create"
:
[
"status"
],
"update"
:
[
"visibility"
,
"code"
,
"status"
,
"mimeType"
...
...
This diff is collapsed.
Click to expand it.
schemas/questionset/1.0/config.json
+
2
−
1
View file @
19f13761
...
...
@@ -48,7 +48,8 @@
"schema_restrict_api"
:
true
,
"restrictProps"
:
{
"create"
:
[
"children"
"children"
,
"status"
],
"update"
:
[
"children"
,
...
...
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