Merge pull request #1178 from ilikerobots/main

repair pre-set replies broken due to raw url parameter name mismatch
This commit is contained in:
Christopher Broderick 2024-05-06 15:42:12 +01:00 committed by GitHub
commit ba9935e792
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -103,7 +103,7 @@ urlpatterns = [
staff.delete_ticket_checklist,
name="delete_ticket_checklist"
),
re_path(r"^raw/(?P<type>\w+)/$", staff.raw_details, name="raw"),
re_path(r"^raw/(?P<type_>\w+)/$", staff.raw_details, name="raw"),
path("rss/", staff.rss_list, name="rss_index"),
path("reports/", staff.report_index, name="report_index"),
re_path(r"^reports/(?P<report>\w+)/$",