diff options
author | Matthew Lemon <y@yulqen.org> | 2024-08-03 16:26:16 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-08-03 16:26:16 +0100 |
commit | 7b757fcd38ca560139aa3c4c86ae57b4c6afe2dd (patch) | |
tree | 76f63bd0f576660154f90dd5f2119edd9b3d1006 /pyblackbird_cc/resources/urls.py | |
parent | a75aca148ba7db29e14e30f2e0707b1efac1ff94 (diff) |
wip: adding the update thumbnails form
Diffstat (limited to 'pyblackbird_cc/resources/urls.py')
-rw-r--r-- | pyblackbird_cc/resources/urls.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pyblackbird_cc/resources/urls.py b/pyblackbird_cc/resources/urls.py index 01c9e2e..0babe83 100644 --- a/pyblackbird_cc/resources/urls.py +++ b/pyblackbird_cc/resources/urls.py @@ -13,6 +13,7 @@ urlpatterns = [ views.update_resource_metadata, name="resource_update_metadata", ), + path("resource/update-thumbnails/<int:pk>", views.update_resource_thumbnails, name="resource_update_thumbnails"), ] htmx_patterns = [ |