Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-ora2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-ora2
Commits
a8b6857a
Commit
a8b6857a
authored
Jan 16, 2014
by
Stephen Sanchez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adding a function for submitting a score for a submission
parent
5c2782ef
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
3 deletions
+12
-3
peer_grading/peer_grading_service.py
+12
-3
No files found.
peer_grading/peer_grading_service.py
View file @
a8b6857a
...
...
@@ -23,7 +23,7 @@ def get_last_submission(student_id, location):
pass
def
submit
(
submission
):
def
submit
_submission
(
submission
):
"""
Submit a submission for peer grading.
@param submission: The submission to add to the peer grading queue. Should contain the student_id,
...
...
@@ -31,4 +31,14 @@ def submit(submission):
preferred grader, and other attributes can be determined internally.
@return: The saved submission.
"""
pass
\ No newline at end of file
pass
def
submit_score
(
scoring
,
submission
):
"""
Submit a scoring for a particular submission
@param scoring: The score for a particular submission.
@param submission: The associated submission.
@return: True if the submission succeeded.
"""
pass
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment