This commit updates common/djangoapps. These keys are now objects with a limited interface, and the particular internal representation is managed by the data storage layer (the modulestore). For the LMS, there should be no outward-facing changes to the system. The keys are, for now, a change to internal representation only. For Studio, the new serialized form of the keys is used in urls, to allow for further migration in the future. Co-Author: Andy Armstrong <andya@edx.org> Co-Author: Christina Roberts <christina@edx.org> Co-Author: David Baumgold <db@edx.org> Co-Author: Diana Huang <dkh@edx.org> Co-Author: Don Mitchell <dmitchell@edx.org> Co-Author: Julia Hansbrough <julia@edx.org> Co-Author: Nimisha Asthagiri <nasthagiri@edx.org> Co-Author: Sarina Canelake <sarina@edx.org> [LMS-2370]
36 lines
1.5 KiB
Python
36 lines
1.5 KiB
Python
import logging
|
|
|
|
from django.contrib.auth.models import User
|
|
from django.db import models
|
|
from xmodule_django.models import CourseKeyField
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
|
class CourseUserGroup(models.Model):
|
|
"""
|
|
This model represents groups of users in a course. Groups may have different types,
|
|
which may be treated specially. For example, a user can be in at most one cohort per
|
|
course, and cohorts are used to split up the forums by group.
|
|
"""
|
|
class Meta:
|
|
unique_together = (('name', 'course_id'), )
|
|
|
|
name = models.CharField(max_length=255,
|
|
help_text=("What is the name of this group? "
|
|
"Must be unique within a course."))
|
|
users = models.ManyToManyField(User, db_index=True, related_name='course_groups',
|
|
help_text="Who is in this group?")
|
|
|
|
# Note: groups associated with particular runs of a course. E.g. Fall 2012 and Spring
|
|
# 2013 versions of 6.00x will have separate groups.
|
|
# TODO change field name to course_key
|
|
course_id = CourseKeyField(max_length=255, db_index=True,
|
|
help_text="Which course is this group associated with?")
|
|
|
|
# For now, only have group type 'cohort', but adding a type field to support
|
|
# things like 'question_discussion', 'friends', 'off-line-class', etc
|
|
COHORT = 'cohort'
|
|
GROUP_TYPE_CHOICES = ((COHORT, 'Cohort'),)
|
|
group_type = models.CharField(max_length=20, choices=GROUP_TYPE_CHOICES)
|