From b2ed96c35a3b59d60707d63b7bfd2461924e5ae9 Mon Sep 17 00:00:00 2001 From: Cristian Date: Thu, 17 Sep 2020 09:08:20 -0500 Subject: [PATCH] feat: Redirect old add view to the main one --- archivebox/core/urls.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/archivebox/core/urls.py b/archivebox/core/urls.py index 47c29942..e11653fd 100644 --- a/archivebox/core/urls.py +++ b/archivebox/core/urls.py @@ -18,6 +18,8 @@ urlpatterns = [ path('archive/', RedirectView.as_view(url='/')), path('archive/', LinkDetails.as_view(), name='LinkAssets'), + + path('admin/core/snapshot/add/', RedirectView.as_view(url='/add/')), path('add/', AddView.as_view()), path('accounts/login/', RedirectView.as_view(url='/admin/login/')),