1
0
Fork 0

Fixes following external fedireads user

Fixes #42
This commit is contained in:
Mouse Reeve 2020-02-19 11:33:00 -08:00
parent bf58e29a54
commit f7867da7a0
7 changed files with 29 additions and 30 deletions

View file

@ -56,8 +56,8 @@ urlpatterns = [
r'^shelve/(?P<username>\w+)/(?P<shelf_id>[\w-]+)/(?P<book_id>\d+)/?$',
views.shelve
),
re_path(r'^follow/?$', views.follow),
re_path(r'^unfollow/?$', views.unfollow),
re_path(r'^follow/(?P<username>[\w@\.]+)/?$', views.follow),
re_path(r'^unfollow/(?P<username>[\w@\.]+)/?$', views.unfollow),
re_path(r'^search/?$', views.search),
re_path(r'^edit_profile/?$', views.edit_profile),