Fix some assignment api return types

specifically Assignment.points_possible and Assignment.integration_data

fixes #1539

test plan: api docs are correct

Change-Id: I7522a84f33530fd854f6429e460b19f63d364cd8
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/219248
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
Tested-by: Jenkins
Reviewed-by: Jeremy Stanley <jeremy@instructure.com>
QA-Review: Simon Williams <simon@instructure.com>
Product-Review: Simon Williams <simon@instructure.com>
This commit is contained in:
Fredrik Ekre 2019-12-03 10:33:30 +01:00 committed by Simon Williams
parent 3ca7345ec5
commit 8e96b8b4b5
1 changed files with 4 additions and 4 deletions

View File

@ -415,8 +415,8 @@
# "description" : "(optional, Third Party unique identifier for Assignment)"
# },
# "integration_data": {
# "example": "12341234",
# "type" : "string",
# "example": {"5678": "0954"},
# "type" : "object",
# "description" : "(optional, Third Party integration data for assignment)"
# },
# "muted": {
@ -425,8 +425,8 @@
# },
# "points_possible": {
# "description": "the maximum points possible for the assignment",
# "example": 12,
# "type": "integer"
# "example": 12.0,
# "type": "number"
# },
# "submission_types": {
# "description": "the types of submissions allowed for this assignment list containing one or more of the following: 'discussion_topic', 'online_quiz', 'on_paper', 'none', 'external_tool', 'online_text_entry', 'online_url', 'online_upload' 'media_recording'",