Files
edx-platform/lms/djangoapps/instructor_task/config/models.py
2019-02-19 11:24:21 -05:00

17 lines
382 B
Python

"""
Models for configuration of settings relevant
to instructor tasks.
"""
from config_models.models import ConfigurationModel
from django.db.models import IntegerField
class GradeReportSetting(ConfigurationModel):
"""
Sets the batch size used when running grade reports
with multiple celery workers.
.. no_pii:
"""
batch_size = IntegerField(default=100)