Create shell django app for course duration feature

This commit is contained in:
Calen Pennington
2018-10-03 09:21:24 -04:00
committed by Matthew Piatetsky
parent 969728874b
commit 4642efbf08
9 changed files with 35 additions and 0 deletions

View File

@@ -1161,6 +1161,8 @@ INSTALLED_APPS = [
# API Documentation
'rest_framework_swagger',
'openedx.features.course_duration_limits',
]

View File

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

View File

@@ -0,0 +1,6 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.contrib import admin
# Register your models here.

View File

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

View File

@@ -0,0 +1,6 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models
# Create your models here.

View File

@@ -0,0 +1,6 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.test import TestCase
# Create your tests here.

View File

@@ -0,0 +1,6 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.shortcuts import render
# Create your views here.