Commit e8e29753 by Martyn James Committed by Zia Fazal

Added new assistant role

parent b2f00926
......@@ -272,6 +272,12 @@ class CourseBetaTesterRole(CourseRole):
def __init__(self, *args, **kwargs):
super(CourseBetaTesterRole, self).__init__(self.ROLE, *args, **kwargs)
class CourseAssistantRole(CourseRole):
"""A course assistant"""
ROLE = 'assistant'
def __init__(self, *args, **kwargs):
super(CourseAssistantRole, self).__init__(self.ROLE, *args, **kwargs)
class CourseAssistantRole(CourseRole):
"""A course assistant"""
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment