Adds manual review view

This commit is contained in:
Mouse Reeve
2021-11-12 16:23:56 -08:00
parent 9bff27e61f
commit 221cde9be4
7 changed files with 132 additions and 3 deletions

View File

@ -243,6 +243,11 @@ urlpatterns = [
views.ImportTroubleshoot.as_view(),
name="import-troubleshoot",
),
re_path(
r"^import/(\d+)/review/?$",
views.ImportManualReview.as_view(),
name="import-review",
),
# users
re_path(rf"{USER_PATH}\.json$", views.User.as_view()),
re_path(rf"{USER_PATH}/?$", views.User.as_view(), name="user-feed"),