diff --git a/bookwyrm/urls.py b/bookwyrm/urls.py index 58eb5bd4..8fa3bc1b 100644 --- a/bookwyrm/urls.py +++ b/bookwyrm/urls.py @@ -78,7 +78,7 @@ urlpatterns = [ re_path(r'%s/editions(.json)?/?$' % book_path, views.editions_page), re_path(r'^author/(?P[\w\-]+)(.json)?/?$', views.author_page), - # TODO: tag needs a .json path + re_path(r'^tag/(?P.+)\.json/?$', views.tag_page), re_path(r'^tag/(?P.+)/?$', views.tag_page), re_path(r'^%s/shelf/(?P[\w-]+)(.json)?/?$' % \ user_path, views.shelf_page),