|
39 | 39 | path('block_types/', views.LibraryBlockTypesView.as_view()),
|
40 | 40 | # Get the list of XBlocks in this library, or add a new one:
|
41 | 41 | path('blocks/', views.LibraryBlocksView.as_view()),
|
42 |
| - # Commit (POST) or revert (DELETE) all pending changes to this library: |
| 42 | + # Get the list of XBlocks in this library, or add a new one: |
| 43 | + path('containers/', views.LibraryContainersView.as_view()), |
| 44 | + # Publish (POST) or revert (DELETE) all pending changes to this library: |
43 | 45 | path('commit/', views.LibraryCommitView.as_view()),
|
44 | 46 | # Get the list of users/groups who have permission to view/edit/administer this library:
|
45 | 47 | path('team/', views.LibraryTeamView.as_view()),
|
|
57 | 59 | path('blocks/<str:usage_key_str>/', include([
|
58 | 60 | # Get metadata about a specific XBlock in this library, or delete the block:
|
59 | 61 | path('', views.LibraryBlockView.as_view()),
|
| 62 | + # Restore a soft-deleted block |
60 | 63 | path('restore/', views.LibraryBlockRestore.as_view()),
|
61 | 64 | # Update collections for a given component
|
62 | 65 | path('collections/', views.LibraryBlockCollectionsView.as_view(), name='update-collections'),
|
|
69 | 72 | path('assets/<path:file_path>', views.LibraryBlockAssetView.as_view()),
|
70 | 73 | path('publish/', views.LibraryBlockPublishView.as_view()),
|
71 | 74 | # Future: discard changes for just this one block
|
72 |
| - # Future: set a block's tags (tags are stored in a Tag bundle and linked in) |
| 75 | + ])), |
| 76 | + # Containers are Sections, Subsections, and Units |
| 77 | + path('containers/<usage_v2:container_key>/', include([ |
| 78 | + # Get metadata about a specific container in this library, or delete the container: |
| 79 | + # path('', views.LibraryContainerView.as_view()), |
| 80 | + # Update collections for a given container |
| 81 | + # path('collections/', views.LibraryContainerCollectionsView.as_view(), name='update-collections-ct'), |
| 82 | + # path('publish/', views.LibraryContainerPublishView.as_view()), |
73 | 83 | ])),
|
74 | 84 | re_path(r'^lti/1.3/', include([
|
75 | 85 | path('login/', views.LtiToolLoginView.as_view(), name='lti-login'),
|
|
0 commit comments