Commit 1: Backend Route & Temporary Storage

This commit is contained in:
Josh Roskos 2026-05-16 21:10:11 -05:00
parent c010f0e1eb
commit 0fb87e1c96
2 changed files with 52 additions and 0 deletions

View file

@ -339,6 +339,7 @@ class ApiRouter {
// Misc Routes
//
this.router.post('/upload', MiscController.handleUpload.bind(this))
this.router.post('/upload/chunk', MiscController.handleChunkUpload.bind(this))
this.router.get('/tasks', MiscController.getTasks.bind(this))
this.router.patch('/settings', MiscController.updateServerSettings.bind(this))
this.router.patch('/sorting-prefixes', MiscController.updateSortingPrefixes.bind(this))