From eb1a22e69fd69e086096dd88a6c5395cc22b81f1 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Thu, 30 Nov 2023 18:21:16 +0100 Subject: [PATCH] Add webpage urls --- vrobbler/urls.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vrobbler/urls.py b/vrobbler/urls.py index 3709b2c..a6218a0 100644 --- a/vrobbler/urls.py +++ b/vrobbler/urls.py @@ -11,6 +11,7 @@ from vrobbler.apps.podcasts import urls as podcast_urls from vrobbler.apps.videogames import urls as videogame_urls from vrobbler.apps.boardgames import urls as boardgame_urls from vrobbler.apps.locations import urls as locations_urls +from vrobbler.apps.webpages import urls as webpages_urls from vrobbler.apps.music.api.views import ( AlbumViewSet, ArtistViewSet, @@ -68,6 +69,7 @@ urlpatterns = [ path("", include(boardgame_urls, namespace="boardgames")), path("", include(sports_urls, namespace="sports")), path("", include(locations_urls, namespace="locations")), + path("", include(webpages_urls, namespace="webpages")), path("", include(podcast_urls, namespace="podcasts")), path("", include(scrobble_urls, namespace="scrobbles")), path(