Skip to content

Commit 2c3cb8b

Browse files
authored
[Documentation:InstructorUI] Upload JSON to create gradeable (#576)
This PR adds documentation on how to use the feature added in Submitty/Submitty#10100.
1 parent cc10bca commit 2c3cb8b

File tree

2 files changed

+115
-2
lines changed

2 files changed

+115
-2
lines changed

_docs/instructor/assignment_preparation/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ redirect_from:
1010
### Create a New Gradeable
1111

1212
To create a new gradeable, instructor users should click "New
13-
Gradeable" in the sidebar on the left of the screen.
14-
Fill out this form (details in the following sections) and press "Create New Gradeable".
13+
Gradeable" in the sidebar on the left of the screen. Either [Upload a JSON file](/instructor/assignment_preparation/upload_gradeable), or
14+
fill out this form (details in the following sections) and press "Create New Gradeable".
1515

1616
Most of the fields on the Create/Edit Gradeable form can be changed
1717
later. You can return to this form from the main page by pressing the
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,113 @@
1+
---
2+
category: Instructor > Assignment Preparation
3+
title: Upload Gradeable
4+
redirect_from:
5+
- /instructor/assignment_preparation/upload_gradeable
6+
---
7+
To create a gradeable by uploading a JSON file, click the "Upload Gradeable Json" file in the top right.
8+
9+
Upload and submit the JSON file to the popup window. If the JSON file contains all of the correct information, you will be
10+
redirected to the gradeable edit screen.
11+
## Variables
12+
#### __Required__
13+
* title -- Gradeable title
14+
* type -- "Checkpoints", "Numeric", or "Electronic File"
15+
* id -- Gradeable ID (Must be unique)
16+
17+
#### Electronic File
18+
__VCS__
19+
* repository_type -- "submitty-hosted", "submitty-hosted-url", "public-github", "self-hosted", "private-github" (Required)
20+
* vcs_path -- Path to VCS repositories (Can be URL, Required)
21+
* vcs_subdirectory -- Path to files within the repository (Optional, leave out if not using subdirectories)
22+
23+
```json
24+
"vcs": {
25+
"repository_type": "submitty-hosted",
26+
"vcs_path": "http://localhost:1511/path/to/repository",
27+
"vcs_subdirectory": "subdirectory"
28+
}
29+
```
30+
31+
__Other Electronic Types__
32+
* bulk_upload -- If the TA will bilk upload assignments online (Default false)
33+
* normal -- Do not include bulk_upload or vcs to have a normal student upload gradeable.
34+
35+
#### Other Variables
36+
37+
#### Team assignments
38+
* team_size_max: Maximum team size
39+
* inherit_from: Gradeable ID to inherit teams from (Default none)
40+
41+
```json
42+
"team_gradeable": {
43+
"team_size_max": 3,
44+
"inherit_from": "gradeable_id",
45+
}
46+
```
47+
#### Grade inquiries
48+
```json
49+
"grading_inquiry": {
50+
"grade_inquiry_per_component_allowed": false,
51+
}
52+
```
53+
#### Other
54+
* ta_grading -- If the TA will grade any/all of the assignments (Default false)
55+
* discussion_thread_id -- The thread ID if using forums (Default none)
56+
* syllabus_bucket -- (Default "Homework")
57+
#### All variables
58+
```json
59+
{
60+
"title": "Example Json",
61+
"instructions_url": "",
62+
"id": "hw-1",
63+
"type": "Electronic File",
64+
"vcs": {
65+
"repository_type": "submitty-hosted",
66+
"vcs_path": "http://localhost:1511/path/to/repository",
67+
"vcs_subdirectory": "subdirectory"
68+
},
69+
"team_gradeable": {
70+
"team_size_max": 3,
71+
"inherit_from": "gradeable_id",
72+
},
73+
"bulk_upload": false,
74+
"grading_inquiry": {
75+
"grade_inquiry_per_component_allowed": false
76+
},
77+
"ta_grading": false,
78+
"discussion_thread_id": "thread_id",
79+
"syllabus_bucket": "Homework"
80+
}
81+
```
82+
#### Sample Bulk Upload Template
83+
```json
84+
{
85+
"title": "Testing Json",
86+
"id": "hw-bulk-upload",
87+
"type": "Electronic File",
88+
"bulk_upload": true,
89+
"syllabus_bucket": "Homework"
90+
}
91+
```
92+
#### Sample Checkpoints Template
93+
```json
94+
{
95+
"title": "Checkpoints Gradeable",
96+
"id": "hw-checkpoints",
97+
"type": "Checkpoints",
98+
"syllabus_bucket": "Homework"
99+
}
100+
```
101+
#### Sample VCS Template
102+
```json
103+
{
104+
"title": "VCS Gradeable",
105+
"id": "hw-vcs",
106+
"type": "Electronic File",
107+
"syllabus_bucket": "Homework",
108+
"vcs": {
109+
"repository_type": "submitty-hosted",
110+
"vcs_path": "http://localhost:1511/path/to/repository",
111+
"vcs_subdirectory": "subdirectory"
112+
},
113+
}

0 commit comments

Comments
 (0)