2025-01-09 02:10:42 +08:00
|
|
|
from django.urls import path, include
|
|
|
|
from .views import (
|
|
|
|
AuthorizationRequestCreateView,
|
|
|
|
AuthorizationRequestUpdateView,
|
|
|
|
AuthorizationRequestListView,
|
2025-01-19 20:18:19 +08:00
|
|
|
AuthorizationRequestUnitUpdateView
|
2025-01-09 02:10:42 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
urlpatterns = [
|
|
|
|
path("create/", AuthorizationRequestCreateView.as_view()),
|
|
|
|
path("list/", AuthorizationRequestListView.as_view()),
|
|
|
|
path("update/<int:pk>/", AuthorizationRequestUpdateView.as_view()),
|
2025-01-19 20:18:19 +08:00
|
|
|
path("authorization_request_units/update/<int:pk>/",
|
|
|
|
AuthorizationRequestUnitUpdateView.as_view()),
|
2025-01-09 02:10:42 +08:00
|
|
|
]
|