Skip to content

Commit

Permalink
refactor: Move Collections views/tests
Browse files Browse the repository at this point in the history
  • Loading branch information
yusuf-musleh committed Aug 30, 2024
1 parent 45cf886 commit 366a7e9
Show file tree
Hide file tree
Showing 7 changed files with 2 additions and 2 deletions.
Empty file.
Empty file.
Empty file.
Empty file.
4 changes: 2 additions & 2 deletions openedx/core/djangoapps/content_libraries/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from rest_framework import routers

from . import views
from .collections.rest_api.v1 import views as collection_views
from . import views_collections


# Django application name.
Expand All @@ -21,7 +21,7 @@

library_collections_router = routers.DefaultRouter()
library_collections_router.register(
r'collections', collection_views.LibraryCollectionsView, basename="library-collections"
r'collections', views_collections.LibraryCollectionsView, basename="library-collections"
)

# These URLs are only used in Studio. The LMS already provides all the
Expand Down

0 comments on commit 366a7e9

Please sign in to comment.