This is a CLI that creates student submission data in all the courses linked to a specific Canvas blue print master course.
- Enroll four students into the course
- Two students will do all the submitting
- Other two students are there only for group actions
- Two students compleat one quiz that contains five auto feedback questions
- Two students compleat one quiz that is contain two teacher graded questions
- Two students submit posts to one discussion board
- A total of five posts alternating between the two students
- One assignment that requires a MS Word file uploaded with two students submissions
- One assignment that requires a MS Excel file uploaded with two students submissions
- One assignment that requires a PDF file uploaded with two students submissions
- One assignment that requires a Plane Text typed in with two students submissions
- One group assignment that requires only one student from each group to submit a URL typed in
- Enroll all four students into a group set called Teacher Editable so teachers can practice editing groups
- Two groups with two students each
- Enroll the four students into a group set called Group Assignment for assignments requirement number five.
- Two groups with two students each
- Make sure that the two students that do the submitting end up in different groups
var drifter = {
course: {id : "string"}
students : {
alice:{
id: "string",
key : "string"
},
...
},
admin : {
id: "string",
key : "string"
},
messages : [
{
name: "string",
worked : bool,
message : "string"
},
...
],
quizzes : {
name: {
id: "string",
search: "string"
},
...
},
discussions : {
name: {
id: "string",
search: "string"
},
...
},
assignments : {
name: {
id: "string",
search: "string"
},
...
},
groups : {
name: {
id: "string",
search: "string"
},
...
}
}