From fedcf045eb2ebb4d279228592baeb7f28f053446 Mon Sep 17 00:00:00 2001 From: "Dave St.Germain" Date: Thu, 7 May 2020 10:45:24 -0400 Subject: [PATCH] Enable access role in django admin --- common/djangoapps/student/roles.py | 1 + 1 file changed, 1 insertion(+) diff --git a/common/djangoapps/student/roles.py b/common/djangoapps/student/roles.py index bbe702d81b..9433022edf 100644 --- a/common/djangoapps/student/roles.py +++ b/common/djangoapps/student/roles.py @@ -312,6 +312,7 @@ class CourseCcxCoachRole(CourseRole): super(CourseCcxCoachRole, self).__init__(self.ROLE, *args, **kwargs) +@register_access_role class CourseDataResearcherRole(CourseRole): """A Data Researcher""" ROLE = 'data_researcher'