aboutsummaryrefslogtreecommitdiff
path: root/ignis/urls.py
blob: ea09dd9f82c87ffd35d8d6bda211f7908db794e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from django.urls import path

from . import views

app_name = 'ignis'
urlpatterns = [
    path('/tex', views.tex, name='tex'),
    path('/post_image/<int:size>/<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'),
    path('/captcha/<str:captcha_string>', views.captcha_image, name='captcha_image'),
    path('/socialify', views.socialify, name='socialify'),
# def socialify(request, repo, theme, font, pattern, name, description, language_1, language_2, stargazers, forks, issues, pulls):

]