[UPDT] HORILLA: Updated horilla global varriable APPS by declare them in every app ready() function

This commit is contained in:
Horilla
2025-01-31 10:50:59 +05:30
parent cc45e33430
commit c03cafd14f
11 changed files with 36 additions and 14 deletions

View File

@@ -17,8 +17,10 @@ class PmsConfig(AppConfig):
def ready(self):
from django.urls import include, path
from horilla.horilla_settings import APPS
from horilla.urls import urlpatterns
APPS.append("pms")
urlpatterns.append(
path("pms/", include("pms.urls")),
)