diff options
| author | Bobby <[email protected]> | 2023-03-26 02:45:43 -0400 |
|---|---|---|
| committer | Bobby <[email protected]> | 2023-03-26 02:45:43 -0400 |
| commit | ccbff8abb41a1b0543fcf4ed17ac14a540b14711 (patch) | |
| tree | c1a60499906d636ec06c3b9efc502e0eaeca6bcd /ignis/urls.py | |
| parent | 27b9fb6a8de18f0aae748ec4572ed449ff445100 (diff) | |
| download | thatcomputerscientist-ccbff8abb41a1b0543fcf4ed17ac14a540b14711.tar.xz thatcomputerscientist-ccbff8abb41a1b0543fcf4ed17ac14a540b14711.zip | |
screenshot api
Diffstat (limited to 'ignis/urls.py')
| -rw-r--r-- | ignis/urls.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ignis/urls.py b/ignis/urls.py index 94de2803..9cea0ad2 100644 --- a/ignis/urls.py +++ b/ignis/urls.py @@ -8,5 +8,6 @@ urlpatterns = [ 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'), - path('/captcha/<str:captcha_string>', views.captcha_image, name='captcha_image') + path('/captcha/<str:captcha_string>', views.captcha_image, name='captcha_image'), + path('/screenshot', views.get_screenshot, name='screenshot') ] |
