Add empty feeds app

This commit is contained in:
Joakim Hellsén 2026-03-24 00:21:03 +01:00
commit c971117e67
Signed by: Joakim Hellsén
SSH key fingerprint: SHA256:/9h/CsExpFp+PRhsfA0xznFx2CGfTT5R/kpuFfUgEQk
8 changed files with 35 additions and 1 deletions

View file

@ -10,7 +10,7 @@ if TYPE_CHECKING:
from django.urls.resolvers import URLResolver
urlpatterns: list[URLPattern | URLResolver] = [
path(route="silk/", view=include("silk.urls", namespace="silk")),
path("", include("feeds.urls")),
]
if settings.DEBUG:
urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)