You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Upon creating or editing a CAS reflection, the user should have the ability to check or uncheck learning outcomes as demonstrated in the reflection. The form is sent by the browser as a string representing an array of Learning Outcome ids.
...
evidence[type]: 'JournalEvidence'
evidence[body]: 'This is the body of the reflection.'
evidence[educational_outcome_ids][]: '[0, 12345]'
...
When the request is replicated on the Request Client, it receives a 404 response. The request succeeds if the evidence[educational_outcome_ids[]] property is omitted.
Currently, the request defaults to unchecked Learning Outcomes for all requests.
Steps to reproduce
Set up a proper request involving this issue. (POST /api/cas/:casId/reflections or PATCH /api/cas/:casId/reflections/:reflectionId)
Comment and uncomment the property in the methods craftNewReflection and craftReflection in helpers/managebac.js to see the issue.
Fix
A fix for this issue is being investigated.
The text was updated successfully, but these errors were encountered:
Description
Upon creating or editing a CAS reflection, the user should have the ability to check or uncheck learning outcomes as demonstrated in the reflection. The form is sent by the browser as a string representing an array of Learning Outcome ids.
When the request is replicated on the Request Client, it receives a 404 response. The request succeeds if the
evidence[educational_outcome_ids[]]
property is omitted.Currently, the request defaults to unchecked Learning Outcomes for all requests.
Steps to reproduce
/api/cas/:casId/reflections
or PATCH/api/cas/:casId/reflections/:reflectionId
)craftNewReflection
andcraftReflection
inhelpers/managebac.js
to see the issue.Fix
A fix for this issue is being investigated.
The text was updated successfully, but these errors were encountered: