Made upload path dynamic.
This commit is contained in:
parent
254cb6004b
commit
2f6ecfe06d
@ -287,11 +287,12 @@ def create_app(
|
||||
max_file_size=max_file_size,
|
||||
upload_folder_quota=upload_folder_quota,
|
||||
)
|
||||
pathlib.Path(upload_path).mkdir(parents=True, exist_ok=True
|
||||
app.add_routes(
|
||||
[
|
||||
web.get("/", handle_index),
|
||||
web.post("/upload", handle_upload),
|
||||
web.static("/uploads", "uploads"),
|
||||
web.static("/uploads", upload_path),
|
||||
]
|
||||
)
|
||||
return app
|
||||
|
Loading…
Reference in New Issue
Block a user