mirror of
https://github.com/django/django.git
synced 2025-10-31 09:41:08 +00:00
Fixed #31180 -- Configured applications automatically.
This commit is contained in:
10
tests/apps/two_configs_one_default_app/apps.py
Normal file
10
tests/apps/two_configs_one_default_app/apps.py
Normal file
@@ -0,0 +1,10 @@
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class TwoConfig(AppConfig):
|
||||
default = True
|
||||
name = 'apps.two_configs_one_default_app'
|
||||
|
||||
|
||||
class TwoConfigAlt(AppConfig):
|
||||
name = 'apps.two_configs_one_default_app'
|
||||
Reference in New Issue
Block a user