chore(api): move podcasts in dedicated app (#1899)

This commit is contained in:
Jonas L 2022-06-21 14:40:21 +02:00 committed by GitHub
parent 4004981429
commit b9895d19e2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
15 changed files with 37 additions and 21 deletions

View file

@ -11,6 +11,7 @@ from rest_framework import routers
from .core.router import router as core_router
from .core.views import version
from .history.router import router as history_router
from .podcasts.router import router as podcasts_router
from .schedule.router import router as schedule_router
from .storage.router import router as storage_router
@ -18,6 +19,7 @@ router = routers.DefaultRouter()
router.registry.extend(core_router.registry)
router.registry.extend(history_router.registry)
router.registry.extend(podcasts_router.registry)
router.registry.extend(schedule_router.registry)
router.registry.extend(storage_router.registry)