2026-03-16 19:19:22 +01:00
|
|
|
from django.conf import settings
|
|
|
|
|
from django.conf.urls.static import static
|
|
|
|
|
from django.contrib import admin
|
|
|
|
|
from django.urls import path, include
|
2026-08-14 23:31:01 +02:00
|
|
|
from django.views.static import serve as serve_static
|
2026-03-16 19:19:22 +01:00
|
|
|
|
|
|
|
|
urlpatterns = [
|
|
|
|
|
path('admin/', admin.site.urls),
|
|
|
|
|
path('accounts/', include('accounts.urls')),
|
2026-03-19 13:39:59 +01:00
|
|
|
path('podcasts/', include('podcasts.urls')),
|
|
|
|
|
path('books/', include('books.urls')),
|
2026-03-20 06:36:41 +01:00
|
|
|
path('api/2/', include('gpodder.urls')),
|
2026-08-14 23:31:01 +02:00
|
|
|
# Served at the root (not /static/js/sw.js) so its default scope covers
|
|
|
|
|
# the whole app — a service worker's scope is limited to its own script's
|
|
|
|
|
# directory unless the server sends Service-Worker-Allowed, so registering
|
|
|
|
|
# it from under /static/js/ silently restricted it to that subpath and
|
|
|
|
|
# navigations to '/', '/books/' etc. were never intercepted while offline.
|
|
|
|
|
path('sw.js', serve_static, {'document_root': settings.BASE_DIR / 'static' / 'js', 'path': 'sw.js'}),
|
2026-03-16 19:19:22 +01:00
|
|
|
path('', include('radio.urls')),
|
|
|
|
|
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
|