mirror of
https://gitlab.science.ru.nl/technicie/MarietjeDjango.git
synced 2025-12-10 00:32:20 +01:00
Initial commit.
This commit is contained in:
17
marietje/api/urls.py
Normal file
17
marietje/api/urls.py
Normal file
@ -0,0 +1,17 @@
|
||||
from django.conf.urls import url
|
||||
|
||||
from . import views
|
||||
|
||||
app_name = 'api'
|
||||
|
||||
urlpatterns = [
|
||||
url(r'^songs', views.songs),
|
||||
url(r'^managesongs', views.managesongs),
|
||||
url(r'^queue', views.queue),
|
||||
url(r'^request', views.request),
|
||||
url(r'^skip', views.skip),
|
||||
url(r'^moveup', views.move_up),
|
||||
url(r'^movedown', views.move_down),
|
||||
url(r'^cancel', views.cancel),
|
||||
url(r'^upload', views.upload),
|
||||
]
|
||||
Reference in New Issue
Block a user