Add a shell app for content_type_gating

This commit is contained in:
Calen Pennington
2018-10-15 13:20:38 -04:00
parent 073df570fa
commit 0adb654724
5 changed files with 10 additions and 0 deletions

View File

@@ -1163,6 +1163,7 @@ INSTALLED_APPS = [
'rest_framework_swagger',
'openedx.features.course_duration_limits',
'openedx.features.content_type_gating',
]

View File

@@ -2287,6 +2287,7 @@ INSTALLED_APPS = [
'openedx.features.learner_analytics',
'openedx.features.portfolio_project',
'openedx.features.course_duration_limits',
'openedx.features.content_type_gating',
'experiments',

View File

@@ -0,0 +1,8 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.apps import AppConfig
class ContentTypeGatingConfig(AppConfig):
name = 'openedx.features.content_type_gating'