django-cfg 1.2.11__py3-none-any.whl → 1.2.13__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- django_cfg/__init__.py +1 -1
- django_cfg/apps/urls.py +2 -2
- django_cfg-1.2.13.dist-info/METADATA +973 -0
- {django_cfg-1.2.11.dist-info → django_cfg-1.2.13.dist-info}/RECORD +7 -7
- django_cfg-1.2.11.dist-info/METADATA +0 -554
- {django_cfg-1.2.11.dist-info → django_cfg-1.2.13.dist-info}/WHEEL +0 -0
- {django_cfg-1.2.11.dist-info → django_cfg-1.2.13.dist-info}/entry_points.txt +0 -0
- {django_cfg-1.2.11.dist-info → django_cfg-1.2.13.dist-info}/licenses/LICENSE +0 -0
django_cfg/__init__.py
CHANGED
django_cfg/apps/urls.py
CHANGED
@@ -45,8 +45,8 @@ def get_django_cfg_urlpatterns() -> List[URLPattern]:
|
|
45
45
|
# patterns.append(path('leads/', include('django_cfg.apps.leads.urls')))
|
46
46
|
|
47
47
|
# Tasks app - enabled when knowbase or agents are enabled
|
48
|
-
|
49
|
-
|
48
|
+
if base_module.is_tasks_enabled():
|
49
|
+
patterns.append(path('tasks/', include('django_cfg.apps.tasks.urls')))
|
50
50
|
|
51
51
|
except Exception:
|
52
52
|
# Fallback: include all URLs if config is not available
|