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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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',
),