Move shelf views into directory

This commit is contained in:
Mouse Reeve 2021-10-20 13:08:33 -07:00
parent f8bdf3a533
commit baba2e2057
3 changed files with 5 additions and 3 deletions

View file

@ -38,6 +38,11 @@ from .landing.login import Login, Logout
from .landing.register import Register, ConfirmEmail, ConfirmEmailCode, resend_link
from .landing.password import PasswordResetRequest, PasswordReset
# shelves
from .shelf.shelf import Shelf
from .shelf.shelf import create_shelf, delete_shelf
from .shelf.shelf import shelve, unshelve
# misc views
from .author import Author, EditAuthor
from .directory import Directory
@ -69,9 +74,6 @@ from .reading import create_readthrough, delete_readthrough, delete_progressupda
from .reading import ReadingStatus
from .rss_feed import RssFeed
from .search import Search
from .shelf import Shelf
from .shelf import create_shelf, delete_shelf
from .shelf import shelve, unshelve
from .status import CreateStatus, EditStatus, DeleteStatus, update_progress
from .status import edit_readthrough
from .updates import get_notification_count, get_unread_status_count

View file