Added /all/ and removed limit endpoints

This commit is contained in:
Benjamyn 2020-11-04 09:15:04 +11:00
parent 3e6e731325
commit b6b4e03890

View File

@ -7,6 +7,7 @@ from rest_framework import routers
urlpatterns = [
path('migrations/', views.MigrationList.as_view()),
path('migrations/all/', views.MigrationListAll.as_view()),
path('migrations/booked/', views.MigrationsBooked.as_view()),
path('migrations/waitingterm/', views.MigrationsWaitingTerm.as_view()),
path('migrations/completed/', views.MigrationsCompleted.as_view()),