aboutsummaryrefslogtreecommitdiffstats
path: root/pyblackbird_cc/resources/urls.py
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2024-05-15 16:28:41 +0100
committerMatthew Lemon <y@yulqen.org>2024-05-15 16:28:41 +0100
commitcf0ceb545421c58acc9478fc376b51065f97e532 (patch)
tree26ab2b9eebd6b03febec1bdb498742c50c8b7253 /pyblackbird_cc/resources/urls.py
parent8d1f465ceb2f5e357b19b6e4c8468703725b4795 (diff)
Basic form to update Resource metadata
Diffstat (limited to 'pyblackbird_cc/resources/urls.py')
-rw-r--r--pyblackbird_cc/resources/urls.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/pyblackbird_cc/resources/urls.py b/pyblackbird_cc/resources/urls.py
index 30c5f99..86b3f4d 100644
--- a/pyblackbird_cc/resources/urls.py
+++ b/pyblackbird_cc/resources/urls.py
@@ -7,6 +7,11 @@ urlpatterns = [
path("", views.index, name="index"),
path("create/", views.create_resource, name="create_resource"),
path("resource/<int:resource_id>", views.resource_detail, name="resource_detail"),
+ path(
+ "resource/update-metadata/<int:pk>",
+ views.update_resource_metadata,
+ name="resource_update_metadata",
+ ),
]
htmx_patterns = [