mirror of
https://gitlab.science.ru.nl/technicie/MarietjeDjango.git
synced 2025-12-10 09:22:20 +01:00
Marietje 4.1: Addition of Django REST framework, Swagger, Dark mode and updates to Django and Bootstrap
This commit is contained in:
@ -1,12 +1,12 @@
|
||||
from django.conf.urls import url
|
||||
from django.urls import path
|
||||
|
||||
from . import views
|
||||
|
||||
app_name = 'playerapi'
|
||||
app_name = "playerapi"
|
||||
|
||||
urlpatterns = [
|
||||
url(r'^queue', views.queue),
|
||||
url(r'^play', views.play),
|
||||
url(r'^next', views.next),
|
||||
url(r'^analysed', views.analysed),
|
||||
path("queue/", views.queue),
|
||||
path("play/", views.play),
|
||||
path("next/", views.next),
|
||||
path("analysed/", views.analysed),
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user