Add a form to upload goodreads data.

This commit is contained in:
Adam Kelly
2020-03-23 16:40:09 +00:00
parent ea735fd570
commit 8bcd3da25e
5 changed files with 25 additions and 0 deletions

View File

@ -34,6 +34,7 @@ urlpatterns = [
re_path(r'^(?P<tab>home|local|federated)/?$', views.home_tab),
re_path(r'^notifications/?', views.notifications_page),
re_path(r'books/?$', views.books_page),
re_path(r'import/?$', views.import_page),
# should return a ui view or activitypub json blob as requested
# users
@ -81,5 +82,6 @@ urlpatterns = [
re_path(r'^accept_follow_request/?$', actions.accept_follow_request),
re_path(r'^delete_follow_request/?$', actions.delete_follow_request),
re_path(r'import_data', actions.import_data),
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)