kopia lustrzana https://dev.funkwhale.audio/funkwhale/funkwhale
21 wiersze
631 B
Python
21 wiersze
631 B
Python
from django.apps import AppConfig, apps
|
|
from django.conf import settings
|
|
|
|
from config import plugins
|
|
|
|
from . import mutations, utils
|
|
|
|
|
|
class CommonConfig(AppConfig):
|
|
name = "funkwhale_api.common"
|
|
|
|
def ready(self):
|
|
super().ready()
|
|
|
|
app_names = [app.name for app in apps.app_configs.values()]
|
|
mutations.registry.autodiscover(app_names)
|
|
utils.monkey_patch_request_build_absolute_uri()
|
|
plugins.startup.autodiscover([p + ".funkwhale_ready" for p in settings.PLUGINS])
|
|
for p in plugins._plugins.values():
|
|
p["settings"] = plugins.load_settings(p["name"], p["settings"])
|