aboutsummaryrefslogtreecommitdiff
path: root/api/letters/urls.py
blob: bd255b165e4d84aadc4b5ad53ee9b2508b862bbb (plain)
1
2
3
4
5
6
7
8
9
10
from django.urls import path

from api.letters import attachments

app_name = "letters"

urlpatterns = [
    path("attachments/upload/@<str:username>", attachments.upload, name="attachment_upload"),
    path("attachments/remove/<int:attachment_id>", attachments.remove, name="attachment_remove"),
]