* Fix type mismatches in the course_modes migrations * Fix type mismatches in the course_action_state migrations * Fix type mismatches in the schedules migrations * Fix type mismatches in grades migrations * Fix type mismatches in video_pipeline * Fix type mismatches in api_admin * Fix mismatches in credential migrations
19 lines
386 B
Python
19 lines
386 B
Python
"""
|
|
Constants and Enums used by Grading.
|
|
"""
|
|
|
|
|
|
class ScoreDatabaseTableEnum(object):
|
|
"""
|
|
The various database tables that store scores.
|
|
"""
|
|
courseware_student_module = 'csm'
|
|
submissions = 'submissions'
|
|
overrides = 'overrides'
|
|
|
|
|
|
class GradeOverrideFeatureEnum(object):
|
|
proctoring = u'PROCTORING'
|
|
gradebook = u'GRADEBOOK'
|
|
grade_import = 'grade-import'
|