This repository has been archived on 2024-11-29. You can view files and clone it, but cannot push or open issues or pull requests.
2020-11-03 09:30:41 +11:00

12 lines
324 B
Python

from django.urls import include, path
from . import views
from rest_framework import routers
# router = routers.DefaultRouter()
# router.register('migrations', views.MigrationList)
urlpatterns = [
path('migrations/', views.MigrationList.as_view()),
path('migrations/<str:pk>/', views.MigrationDetails.as_view())
]