Additional details available in the attached decisions document. Co-authored-by: Kshitij Sobti <kshitij@sobti.in> Co-authored-by: stvn <stvn@mit.edu>
12 lines
211 B
Python
12 lines
211 B
Python
"""
|
|
Configure the django app
|
|
"""
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class DiscussionsConfig(AppConfig):
|
|
"""
|
|
Configure the discussions django app
|
|
"""
|
|
name = 'openedx.core.djangoapps.discussions'
|