Files
edx-platform/openedx/core/djangoapps/plugins/registry.py
2018-01-15 12:16:53 -05:00

13 lines
292 B
Python

from openedx.core.lib.plugins import PluginManager
class DjangoAppRegistry(PluginManager):
"""
DjangoAppRegistry is a registry of django app plugins.
"""
pass
def get_app_configs(project_type):
return DjangoAppRegistry.get_available_plugins(project_type).itervalues()