kopia lustrzana https://dev.funkwhale.audio/funkwhale/funkwhale
14 wiersze
298 B
Python
14 wiersze
298 B
Python
![]() |
from django.apps import AppConfig, apps
|
||
|
|
||
|
from . import mutations
|
||
|
|
||
|
|
||
|
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)
|