Skip to content

Commit

Permalink
Fix URL patterns
Browse files Browse the repository at this point in the history
  • Loading branch information
ffont committed Dec 10, 2024
1 parent beed6d0 commit f447d47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions accounts/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@
path('bookmarks/category/<int:category_id>/delete/', bookmarks.delete_bookmark_category, name="delete-bookmark-category"),
path('bookmarks/<int:bookmark_id>/delete/', bookmarks.delete_bookmark, name="delete-bookmark"),
path('bookmarks/category/<int:category_id>/edit_modal/', bookmarks.edit_bookmark_category, name="edit-bookmark-category"),
path('bookmarks/<int:category_id>/download/', bookmarks.download_bookmark_category, name="download-bookmark-category"),
path('bookmarks/<int:category_id>/licenses/', bookmarks.bookmark_category_licenses, name="category-licenses"),
path('bookmarks/category/<int:category_id>/download/', bookmarks.download_bookmark_category, name="download-bookmark-category"),
path('bookmarks/category/<int:category_id>/licenses/', bookmarks.bookmark_category_licenses, name="category-licenses"),

path('messages/', messages.inbox, name='messages'),
path('messages/sent/', messages.sent_messages, name='messages-sent'),
Expand Down

0 comments on commit f447d47

Please sign in to comment.