[FIX] PROJECT: #810

This commit is contained in:
Horilla
2025-07-09 14:10:43 +05:30
parent 5223c63eff
commit ea372bab16
10 changed files with 68 additions and 61 deletions

View File

@@ -8,21 +8,12 @@ class ProjectConfig(AppConfig):
def ready(self):
from django.urls import include, path
from horilla.horilla_settings import APP_URLS, APPS
from horilla.urls import urlpatterns
APPS.append("project")
urlpatterns.append(
path("project/", include("project.urls")),
)
APP_URLS.append("project.urls")
super().ready()
try:
from django.urls import include, path
from horilla.urls import urlpatterns
urlpatterns.append(
path("project/", include("project.urls")),
)
except:
"""
Models not ready yet
"""