Completed #9 and changed the http endpoint for uploading a song from upload/song/ to song/upload/

This commit is contained in:
amazing-username
2019-03-05 21:58:21 -05:00
parent a949de27f2
commit d2bb9b17af
3 changed files with 10 additions and 2 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ from api import views
urlpatterns = [
path('song/', views.UploadList().as_view()),
path('upload/song/', views.UploadList().as_view())
path('song/upload/', views.UploadList().as_view())
]
urlpatterns = format_suffix_patterns(urlpatterns)