🩺(project) reload app if front and back unsync

We observe some cases where the frontend and
backend versions can get out of sync, which can
cause issues.
To mitigate this, we want to implement a mechanism
that detects when the frontend and backend
versions are mismatched and triggers a
reload of the application to ensure they are in sync.
This commit is contained in:
Anthony LC
2026-05-07 14:20:05 +02:00
parent 1268bbe5ea
commit 67773ef2d9
8 changed files with 68 additions and 4 deletions
+1
View File
@@ -2841,6 +2841,7 @@ class ConfigView(drf.views.APIView):
dict_settings[setting] = getattr(settings, setting)
dict_settings["theme_customization"] = self._load_theme_customization()
dict_settings["RELEASE_VERSION"] = settings.RELEASE
return drf.response.Response(dict_settings)