basic file sending/viewing

This commit is contained in:
Xevion
2020-10-31 12:39:28 -05:00
parent c8fcb09b73
commit 8cbf8396fd
3 changed files with 25 additions and 1 deletions

View File

@@ -5,4 +5,5 @@ from . import views
urlpatterns = [
path('', views.index, name='index'),
path('/<uuid:directory_id>/', views.browse, name='browse'),
path('/<uuid:directory_id>/<str:file>/', views.file, name='file')
]