mirror of
https://github.com/sissbruecker/linkding.git
synced 2025-08-07 02:48:27 +02:00
Refactor packages
This commit is contained in:
@@ -8,9 +8,9 @@ app_name = 'bookmarks'
|
||||
urlpatterns = [
|
||||
# Redirect root to bookmarks index
|
||||
url(r'^$', RedirectView.as_view(pattern_name='bookmarks:index', permanent=False)),
|
||||
# Bookmarks
|
||||
path('bookmarks', views.index, name='index'),
|
||||
path('bookmarks/new', views.new, name='new'),
|
||||
path('bookmarks/<int:bookmark_id>/edit', views.edit, name='edit'),
|
||||
# path('bookmarks/<int:bookmark_id>/update', views.update, name='edit'),
|
||||
path('bookmarks/<int:bookmark_id>/remove', views.remove, name='remove'),
|
||||
]
|
||||
|
Reference in New Issue
Block a user