fixup! 🔧(back) allow to configure USE_SWAGGER settings

This commit is contained in:
Manuel Raynaud
2025-06-02 12:56:14 +02:00
parent 278851e0f9
commit 63c670c6e2
+2 -5
View File
@@ -322,6 +322,7 @@ class Base(Configuration):
# OIDC third party
"mozilla_django_oidc",
"lasuite.malware_detection",
"drf_spectacular_sidecar"
]
# Cache
@@ -910,7 +911,7 @@ class Development(Base):
def __init__(self):
# pylint: disable=invalid-name
self.INSTALLED_APPS += ["django_extensions", "drf_spectacular_sidecar"]
self.INSTALLED_APPS += ["django_extensions"]
class Test(Base):
@@ -923,10 +924,6 @@ class Test(Base):
CELERY_TASK_ALWAYS_EAGER = values.BooleanValue(True)
def __init__(self):
# pylint: disable=invalid-name
self.INSTALLED_APPS += ["drf_spectacular_sidecar"]
class ContinuousIntegration(Test):
"""