Buttons for undoing follow requests

This commit is contained in:
Mouse Reeve
2021-03-13 14:48:15 -08:00
parent 546579c231
commit e9575cae6c
2 changed files with 8 additions and 10 deletions

View File

@ -188,8 +188,8 @@ urlpatterns = [
re_path(r"^start-reading/(?P<book_id>\d+)/?$", views.start_reading),
re_path(r"^finish-reading/(?P<book_id>\d+)/?$", views.finish_reading),
# following
re_path(r"^follow/?$", views.follow),
re_path(r"^unfollow/?$", views.unfollow),
re_path(r"^follow/?$", views.follow, name="follow"),
re_path(r"^unfollow/?$", views.unfollow, name="unfollow"),
re_path(r"^accept-follow-request/?$", views.accept_follow_request),
re_path(r"^delete-follow-request/?$", views.delete_follow_request),
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)