app: refactor upload handler registration

Move upload handler registration out of the file manager.
Register the primary hander in the app module, and the
Octoprint Comptaiblity handler in octoprint_compat.

Signed-off-by:  Eric Callahan <arksine.code@gmail.com>
This commit is contained in:
Eric Callahan
2021-12-21 12:53:59 -05:00
parent ac9eaa7681
commit b369173f94
3 changed files with 5 additions and 3 deletions

View File

@@ -87,9 +87,6 @@ class FileManager:
transports=["websocket"])
# register client notificaitons
self.server.register_notification("file_manager:filelist_changed")
# Register APIs to handle file uploads
self.server.register_upload_handler("/server/files/upload")
self.server.register_upload_handler("/api/files/local")
self.server.register_event_handler(
"server:klippy_identified", self._update_fixed_paths)