Jelajahi Sumber

[urls] Removes accidentaly committed URL updates

The modern_ui app is not ready yet, still sitting on a dev machine.

These url paths should not have been committed, so we'll just comment
them out for now.
Colin Powell 1 bulan lalu
induk
melakukan
eec00ce658
1 mengubah file dengan 2 tambahan dan 2 penghapusan
  1. 2 2
      vrobbler/urls.py

+ 2 - 2
vrobbler/urls.py

@@ -44,7 +44,7 @@ from vrobbler.apps.videogames import urls as videogame_urls
 from vrobbler.apps.videos import urls as video_urls
 from vrobbler.apps.videos.api.views import SeriesViewSet, VideoViewSet
 from vrobbler.apps.webpages import urls as webpages_urls
-from vrobbler.apps.modern_ui import urls as modern_ui_urls
+#from vrobbler.apps.modern_ui import urls as modern_ui_urls
 
 router = routers.DefaultRouter()
 router.register(r"scrobbles", ScrobbleViewSet)
@@ -73,7 +73,7 @@ urlpatterns = [
     path("admin/", admin.site.urls),
     path("accounts/", include("allauth.urls")),
     path("o/", include(oauth2_urls)),
-    path("modern_ui/", include(modern_ui_urls, namespace="modern_ui")),
+    #path("modern_ui/", include(modern_ui_urls, namespace="modern_ui")),
     path("", include(music_urls, namespace="music")),
     path("", include(book_urls, namespace="books")),
     path("", include(video_urls, namespace="videos")),