mirror of
https://github.com/mediacms-io/mediacms.git
synced 2024-11-22 08:13:33 +01:00
ba94989e6a
add new URLS, add swaggger doc, add tests
11 lines
200 B
Python
11 lines
200 B
Python
# -*- coding: utf-8 -*-
|
|
from django.conf.urls import re_path
|
|
|
|
from . import views
|
|
|
|
app_name = "uploader"
|
|
|
|
urlpatterns = [
|
|
re_path(r"^upload/$", views.FineUploaderView.as_view(), name="upload"),
|
|
]
|