Bump Django and other dependencies (#331)

* Bump Django and other dependencies

* Bump python version for CI
This commit is contained in:
Sascha Ißbrücker
2022-09-04 07:15:09 +02:00
committed by GitHub
parent e4636c0ceb
commit 5841ba0f4c
5 changed files with 54 additions and 54 deletions

View File

@@ -1,4 +1,4 @@
from django.conf.urls import url
from django.urls import re_path
from django.urls import path, include
from django.views.generic import RedirectView
@@ -9,7 +9,7 @@ from bookmarks.feeds import AllBookmarksFeed, UnreadBookmarksFeed
app_name = 'bookmarks'
urlpatterns = [
# Redirect root to bookmarks index
url(r'^$', RedirectView.as_view(pattern_name='bookmarks:index', permanent=False)),
re_path(r'^$', RedirectView.as_view(pattern_name='bookmarks:index', permanent=False)),
# Bookmarks
path('bookmarks', views.bookmarks.index, name='index'),
path('bookmarks/archived', views.bookmarks.archived, name='archived'),