Skip to content

Commit

Permalink
Merge pull request freelawproject#4361 from freelawproject/tweak-make…
Browse files Browse the repository at this point in the history
…-url-match-work

fix(urls): Elevate the download URL
  • Loading branch information
mlissner authored Aug 27, 2024
2 parents 5144975 + d0a405d commit 9afbf94
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions cl/opinion_page/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,17 @@
name="docket_feed",
),
path("opinion/<int:pk>/<blank-slug:_>/", view_opinion, name="view_case"), # type: ignore[arg-type]
path(
"docket/<int:pk>/<blank-slug:slug>/", view_docket, name="view_docket" # type: ignore[arg-type]
),
path(
"docket/<int:docket_id>/download/",
download_docket_entries_csv, # type: ignore[arg-type]
name="view_download_docket",
),
path(
"docket/<int:pk>/<blank-slug:slug>/",
view_docket,
name="view_docket",
# type: ignore[arg-type]
),
path(
"recap/gov.uscourts.<str:court>.<str:pacer_case_id>/",
redirect_docket_recap, # type: ignore[arg-type]
Expand Down

0 comments on commit 9afbf94

Please sign in to comment.