Implement getting bank account details

This commit is contained in:
2023-03-08 17:04:47 +00:00
parent 144e048d5f
commit c0dc41a63a
5 changed files with 145 additions and 6 deletions

View File

@@ -87,4 +87,10 @@ urlpatterns = [
aggregators.ReqDelete.as_view(),
name="req_delete",
),
# Requisition info
path(
"aggs/<str:type>/info/<str:pk>/<str:req_id>/",
aggregators.ReqInfo.as_view(),
name="req_info",
),
] + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)