Skip to content

Commit

Permalink
Re-enable the dump_data view
Browse files Browse the repository at this point in the history
It was unreachable since the django 3.2 migration. See https://docs.djangoproject.com/en/4.0/releases/3.2/#id1
  • Loading branch information
tuxella authored and bport committed Oct 20, 2022
1 parent 71c54d8 commit 10f4284
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
- Fix NonExistentTimeError that could happen exactly 30 or 7 days after spring DST change
- Fix character escaping in email body
- Add interview kind to all_interviews.tsv export
- Re-enable the dump_data view, which was unreachable since the django 3.2 migration
- Update to django 3.2.15
- Update black to 22.8.0
- Migrate from pipenv to poetry
Expand Down
2 changes: 1 addition & 1 deletion pyoupyou/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
from interview import views, feeds

urlpatterns = [
url(r"^admin/", admin.site.urls),
url(r"^admin/dump_data", views.dump_data),
url(r"^admin/", admin.site.urls),
url(r"^$", views.dashboard, name="dashboard"),
url(r"^processes/$", views.processes, name="process-list"),
url(r"^processes/closed$", views.closed_processes, name="process-closed-list"),
Expand Down

0 comments on commit 10f4284

Please sign in to comment.