Implement archive function (#46)

This commit is contained in:
Sascha Ißbrücker
2021-02-14 10:51:32 +01:00
parent f555bba9e9
commit 256084f6cb
10 changed files with 167 additions and 4 deletions

View File

@@ -15,6 +15,8 @@ urlpatterns = [
path('bookmarks/close', views.bookmarks.close, name='close'),
path('bookmarks/<int:bookmark_id>/edit', views.bookmarks.edit, name='edit'),
path('bookmarks/<int:bookmark_id>/remove', views.bookmarks.remove, name='remove'),
path('bookmarks/<int:bookmark_id>/archive', views.bookmarks.archive, name='archive'),
path('bookmarks/<int:bookmark_id>/unarchive', views.bookmarks.unarchive, name='unarchive'),
path('bookmarklet', views.bookmarks.bookmarklet, name='bookmarklet'),
# Settings
path('settings', views.settings.index, name='settings.index'),