diff options
| author | Aymeric Augustin <aymeric.augustin@m4x.org> | 2020-07-21 10:35:12 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-21 10:35:12 +0200 |
| commit | 3f2821af6bc48fa8e7970c1ce27bc54c3172545e (patch) | |
| tree | 807b209dd7bf77cde680f54a18395672c1cb607f /tests/apps/two_configs_one_default_app/apps.py | |
| parent | 6ec5eb5d74fd18a91256010706ab8b5b583526a9 (diff) | |
Fixed #31180 -- Configured applications automatically.
Diffstat (limited to 'tests/apps/two_configs_one_default_app/apps.py')
| -rw-r--r-- | tests/apps/two_configs_one_default_app/apps.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/apps/two_configs_one_default_app/apps.py b/tests/apps/two_configs_one_default_app/apps.py new file mode 100644 index 0000000000..489eb0f88f --- /dev/null +++ b/tests/apps/two_configs_one_default_app/apps.py @@ -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' |
