diff options
| author | Bobby <[email protected]> | 2022-12-01 00:22:43 -0500 |
|---|---|---|
| committer | Bobby <[email protected]> | 2022-12-01 00:22:43 -0500 |
| commit | 57a1b08473a172e53ee19cacfc4d8b17eb77bdad (patch) | |
| tree | a011afc0d385ad8f62ad7a9764583a2cfaef6e7f /ignis/urls.py | |
| parent | 86923f4edf2a2fdc180e6ffe5eea368a6a6d91f6 (diff) | |
| download | thatcomputerscientist-57a1b08473a172e53ee19cacfc4d8b17eb77bdad.tar.xz thatcomputerscientist-57a1b08473a172e53ee19cacfc4d8b17eb77bdad.zip | |
Add Image URL Extensions
Diffstat (limited to 'ignis/urls.py')
| -rw-r--r-- | ignis/urls.py | 2 |
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'), |
