Skip to content

Commit

Permalink
Fix url namespace warnings. (#3750)
Browse files Browse the repository at this point in the history
Fixes #3748.

To silence the remaning Django check warning one can add this to
`local.py`:

`SILENCED_SYSTEM_CHECKS = ["urls.W003"]`
  • Loading branch information
frjo authored Feb 22, 2024
1 parent 244b894 commit 37b2f49
Showing 1 changed file with 0 additions and 26 deletions.
26 changes: 0 additions & 26 deletions hypha/apply/projects/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,30 +146,4 @@
)
),
),
path(
"vendor/",
include(
(
[
path("", ReportListView.as_view(), name="all"),
path(
"<int:pk>/",
include(
[
path("", ReportDetailView.as_view(), name="detail"),
path("skip/", ReportSkipView.as_view(), name="skip"),
path("edit/", ReportUpdateView.as_view(), name="edit"),
path(
"documents/<int:file_pk>/",
ReportPrivateMedia.as_view(),
name="document",
),
]
),
),
],
"reports",
)
),
),
]

0 comments on commit 37b2f49

Please sign in to comment.