15 lines
345 B
Python
15 lines
345 B
Python
from __future__ import absolute_import
|
|
from openedx.core.lib.plugins import PluginManager
|
|
import six
|
|
|
|
|
|
class DjangoAppRegistry(PluginManager):
|
|
"""
|
|
DjangoAppRegistry is a registry of django app plugins.
|
|
"""
|
|
pass
|
|
|
|
|
|
def get_app_configs(project_type):
|
|
return six.itervalues(DjangoAppRegistry.get_available_plugins(project_type))
|