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:
0
tests/apps/two_configs_app/__init__.py
Normal file
0
tests/apps/two_configs_app/__init__.py
Normal file
9
tests/apps/two_configs_app/apps.py
Normal file
9
tests/apps/two_configs_app/apps.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class TwoConfig(AppConfig):
|
||||
name = 'apps.two_configs_app'
|
||||
|
||||
|
||||
class TwoConfigBis(AppConfig):
|
||||
name = 'apps.two_configs_app'
|
||||
Reference in New Issue
Block a user