File tree 1 file changed +7
-7
lines changed
_docs/instructor/course_settings/rainbow_grades
1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -74,20 +74,20 @@ It can contain the following:
74
74
This array is unrelated to benchmarks.
75
75
76
76
* ** field:** `` "manual_grade" ``
77
- ** type:** _ associative array / mapping from string to associative array _
77
+ ** type:** _ array of associative arrays _
78
78
79
- For each student that you want to assign a manual grade to, their id must
80
- be mapped to an associative array with a field `` "grade" `` mapped to a string
81
- with the letter grade you want to give them, and `` "note" `` containing any note
82
- about the adjustment. The note is only visible to the instructor. For example,
79
+ For each student that you want to assign a manual grade to, add an item to
80
+ `` "manual_grade" `` with fields `` "user" `` , `` "grade" `` , and `` "note" `` containing
81
+ any note about the adjustment. The note is only visible to the instructor. For example,
83
82
to give user `` smithj `` a grade lettter of `` D `` with a reason of
84
83
`` "Put in extraordinary effort." `` :
85
84
86
85
``` json
87
- "smithj" : {
86
+ "manual_grade" : [{
87
+ "user" :" smithj" ,
88
88
"grade" : " D" ,
89
89
"note" : " Put in extraordinary effort."
90
- }
90
+ }]
91
91
```
92
92
93
93
* ** field:** `` "warning" ``
You can’t perform that action at this time.
0 commit comments