aboutsummaryrefslogtreecommitdiff
path: root/ignis/urls.py
diff options
context:
space:
mode:
authorBobby <[email protected]>2022-12-01 00:22:43 -0500
committerBobby <[email protected]>2022-12-01 00:22:43 -0500
commit57a1b08473a172e53ee19cacfc4d8b17eb77bdad (patch)
treea011afc0d385ad8f62ad7a9764583a2cfaef6e7f /ignis/urls.py
parent86923f4edf2a2fdc180e6ffe5eea368a6a6d91f6 (diff)
downloadthatcomputerscientist-57a1b08473a172e53ee19cacfc4d8b17eb77bdad.tar.xz
thatcomputerscientist-57a1b08473a172e53ee19cacfc4d8b17eb77bdad.zip
Add Image URL Extensions
Diffstat (limited to 'ignis/urls.py')
-rw-r--r--ignis/urls.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ignis/urls.py b/ignis/urls.py
index ea0e3b66..b190a40f 100644
--- a/ignis/urls.py
+++ b/ignis/urls.py
@@ -4,7 +4,7 @@ from . import views
app_name = 'ignis'
urlpatterns = [
path('/tex', views.tex, name='tex'),
- path('/post_image/<int:post_id>/', views.post_image, name='post_image'),
+ path('/post_image/<str:post_id>', views.post_image, name='post_image'),
path('/upload', views.upload_image, name='upload_image'),
path('/image/<post_id>/<image_name>', views.get_image, name='get_image'),
path('/cover/<str:repository>', views.cover_image, name='cover_image'),