From d936dfad53ed5126124e1e978b40392fbd624258 Mon Sep 17 00:00:00 2001 From: Birger Schacht Date: Thu, 30 Jan 2025 09:37:23 +0100 Subject: [PATCH] refactor(sample_project): rearrange app order --- sample_project/settings.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sample_project/settings.py b/sample_project/settings.py index 85a2b25ad..e5a0776fa 100644 --- a/sample_project/settings.py +++ b/sample_project/settings.py @@ -43,16 +43,16 @@ # swagger ui generation "drf_spectacular", # The APIS apps - "apis_core.relations", + # APIS collections provide a collection model similar to + # SKOS collections and allow tagging of content + "apis_core.collections", "apis_core.apis_metainfo", + "apis_core.relations", "apis_core.apis_entities", # apis_vocabularies is deprecated, but there are # still migrations depending on it - it will be dropped # at some point "apis_core.apis_vocabularies", - # APIS collections provide a collection model similar to - # SKOS collections and allow tagging of content - "apis_core.collections", # APIS history modules tracks changes of instances over # time and lets you revert changes "apis_core.history",