1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-02-06 21:33:02 +00:00

11 lines
251 B
Python
Raw Normal View History

2020-04-29 15:29:01 +02:00
from django.urls import path
2020-04-30 01:20:50 +02:00
from .views import CreateUserView, DocumentView
2020-04-29 15:29:01 +02:00
app_name = "member"
urlpatterns = [
path('signup/', CreateUserView.as_view(), name="signup"),
2020-04-30 01:20:50 +02:00
path("file/<str:file>/", DocumentView.as_view(), name="document"),
2020-04-29 15:29:01 +02:00
]