Skip to content
Snippets Groups Projects
Commit 8314971e authored by stvn's avatar stvn
Browse files

refactor: Convert discussions to pluggable app

This minimizes our footprint outside of the djangoapp, now and moving
forward. Not only can we drop the `lms/envs/common.py` change, but we
can also avoid touching `lms/urls.py` when we add the API. Everything
can stay contained within `openedx/core/djangoapps/discussions`.
parent 602efa5b
No related branches found
No related tags found
No related merge requests found
......@@ -2867,7 +2867,6 @@ INSTALLED_APPS = [
# Discussion forums
'openedx.core.djangoapps.django_comment_common',
'openedx.core.djangoapps.discussions',
# Notes
'lms.djangoapps.edxnotes',
......
......@@ -2,6 +2,8 @@
Configure the django app
"""
from django.apps import AppConfig
from edx_django_utils.plugins import PluginSettings
from edx_django_utils.plugins import PluginURLs
class DiscussionsConfig(AppConfig):
......@@ -9,3 +11,9 @@ class DiscussionsConfig(AppConfig):
Configure the discussions django app
"""
name = 'openedx.core.djangoapps.discussions'
plugin_app = {
PluginURLs.CONFIG: {
},
PluginSettings.CONFIG: {
},
}
......@@ -83,6 +83,7 @@ setup(
"credentials = openedx.core.djangoapps.credentials.apps:CredentialsConfig",
"content_libraries = openedx.core.djangoapps.content_libraries.apps:ContentLibrariesConfig",
"discussion = lms.djangoapps.discussion.apps:DiscussionConfig",
"discussions = openedx.core.djangoapps.discussions.apps:DiscussionsConfig",
"grades = lms.djangoapps.grades.apps:GradesConfig",
"plugins = openedx.core.djangoapps.plugins.apps:PluginsConfig",
"theming = openedx.core.djangoapps.theming.apps:ThemingConfig",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment