12 lines
324 B
Python
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())
|
|
]
|