aboutsummaryrefslogtreecommitdiffstats
path: root/pyblackbird_cc/resources/urls.py
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2024-05-22 16:39:06 +0100
committerMatthew Lemon <y@yulqen.org>2024-05-22 16:39:19 +0100
commitbefd3e81321e0f5989d68a6838b4a17af51b1e64 (patch)
treebf59889e587bca347dbc3807004b19c4a69ecfb6 /pyblackbird_cc/resources/urls.py
parentff1aa3aa113e507f870eba4c96099946f154fb22 (diff)
wip: starting to test the featured resource view
Diffstat (limited to 'pyblackbird_cc/resources/urls.py')
-rw-r--r--pyblackbird_cc/resources/urls.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/pyblackbird_cc/resources/urls.py b/pyblackbird_cc/resources/urls.py
index ad5741f..01c9e2e 100644
--- a/pyblackbird_cc/resources/urls.py
+++ b/pyblackbird_cc/resources/urls.py
@@ -6,6 +6,7 @@ app_name = "resources"
urlpatterns = [
path("", views.index, name="resource_list"),
path("create/", views.create_resource, name="create_resource"),
+ path("featured/", views.create_featured, name="create_featured"),
path("resource/<int:resource_id>", views.resource_detail, name="resource_detail"),
path(
"resource/update-metadata/<int:pk>",