1
0
Fork 0

Following views

This commit is contained in:
Mouse Reeve 2021-01-13 13:05:16 -08:00
parent 7555d76c3f
commit a385aa4cb5
7 changed files with 133 additions and 198 deletions

View file

@ -5,6 +5,8 @@ from .books import Book, EditBook, Editions
from .books import upload_cover, add_description, switch_edition, resolve_book
from .direct_message import DirectMessage
from .error import not_found_page, server_error_page
from .follow import follow, unfollow
from .follow import accept_follow_request, delete_follow_request
from .import_data import Import, ImportStatus
from .interaction import Favorite, Unfavorite, Boost, Unboost
from .invite import ManageInvites, Invite

View file

@ -10,7 +10,8 @@ from django.views.decorators.http import require_POST
from bookwyrm import models
from bookwyrm.broadcast import broadcast
from .helpers import get_edition, handle_reading_status, handle_unshelve
from .helpers import get_edition, handle_reading_status
from .shelf import handle_unshelve
# pylint: disable= no-self-use