2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-13 10:35:40 +00:00

Fix URL regex (#6218)

URL regex for build report detail view was incorrect
This commit is contained in:
Oliver
2024-01-12 23:49:50 +11:00
committed by GitHub
parent b4a7787447
commit a04b22b090

View File

@ -621,7 +621,7 @@ report_api_urls = [
name='api-build-report-metadata',
),
re_path(
r'^.$',
r'^.*$',
BuildReportDetail.as_view(),
name='api-build-report-detail',
),