18 lines
518 B
Python
18 lines
518 B
Python
|
"""
|
||
|
URL endpoints for the Centralised File System API.
|
||
|
"""
|
||
|
|
||
|
from django.urls import path
|
||
|
|
||
|
from centralisedFileSystem import views
|
||
|
|
||
|
|
||
|
urlpatterns = [
|
||
|
path('script', views.ScriptView.as_view()),
|
||
|
# path('download', views.ScriptDownload.as_view()), # download is replaced by get method on script
|
||
|
path('screenplay', views.ScreenPlayView.as_view()),
|
||
|
path('firstscript', views.ScreenPlayScriptView.as_view()),
|
||
|
path('file', views.FileView.as_view()),
|
||
|
path('myscripts', views.UserScripts.as_view()),
|
||
|
]
|