List of pending follow requests with accept/delete buttons on own profile.

This commit is contained in:
Adam Kelly
2020-03-13 14:34:40 +00:00
parent 1693473fd2
commit 05f5315b98
3 changed files with 57 additions and 0 deletions

View File

@ -62,4 +62,8 @@ urlpatterns = [
re_path(r'^edit_profile/?$', actions.edit_profile),
re_path(r'^clear-notifications/?$', actions.clear_notifications),
re_path(r'^accept_follow_request/?$', actions.accept_follow_request),
re_path(r'^delete_follow_request/?$', actions.delete_follow_request),
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)