diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2022-11-15 16:29:30 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2022-12-12 12:23:19 +0100 |
commit | b7db43100c6090937f61929430230ebab5bfbf76 (patch) | |
tree | 7d53e762723338913594ccdb42c6fa08c4bfb5ef /example_project | |
parent | 58663c87b11bfe0b60a9861a8fddd5bbb22ca0b4 (diff) | |
download | Ishtar-b7db43100c6090937f61929430230ebab5bfbf76.tar.bz2 Ishtar-b7db43100c6090937f61929430230ebab5bfbf76.zip |
File module refactoring - more tests for files
Diffstat (limited to 'example_project')
-rw-r--r-- | example_project/settings.py | 2 | ||||
-rw-r--r-- | example_project/urls.py | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/example_project/settings.py b/example_project/settings.py index e09df3001..d0c7ab476 100644 --- a/example_project/settings.py +++ b/example_project/settings.py @@ -163,7 +163,6 @@ AUTHENTICATION_BACKENDS = ("ishtar_common.backend.ObjectPermBackend",) INSTALLED_APPS = [ "registration", "ishtar_common", - "archaeological_files_pdl", "archaeological_files", "archaeological_operations", "archaeological_context_records", @@ -238,7 +237,6 @@ LOGGING = { }, "ishtar_pdl": default_handler, "ishtar_common": default_handler, - "archaeological_files_pdl": default_handler, "archaeological_files": default_handler, "archaeological_operations": default_handler, "archaeological_context_records": default_handler, diff --git a/example_project/urls.py b/example_project/urls.py index 40e5c36db..9615afd5b 100644 --- a/example_project/urls.py +++ b/example_project/urls.py @@ -11,7 +11,7 @@ admin.autodiscover() urlpatterns = urlpatterns[:] -APP_LIST = ['archaeological_files_pdl', 'archaeological_files', +APP_LIST = ['archaeological_files', 'archaeological_operations', 'archaeological_context_records', 'archaeological_warehouse', 'archaeological_finds'] for app in APP_LIST: |