aboutsummaryrefslogtreecommitdiff
path: root/src/routes.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/routes.rs')
-rw-r--r--src/routes.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/routes.rs b/src/routes.rs
index fed3067..c48ec24 100644
--- a/src/routes.rs
+++ b/src/routes.rs
@@ -41,9 +41,9 @@ pub async fn routes(
include_str!("static/main.css").to_string(),
"text/css",
)),
- (&Method::POST, [""]) => upload_file(request, db_conn, authorized_key, files_dir).await,
- (&Method::GET, [file_id]) => get(db_conn, file_id, GetFile::ShowPage, files_dir).await,
- (&Method::GET, [file_id, "download"]) => {
+ (&Method::POST, ["upload"]) => upload_file(request, db_conn, authorized_key, files_dir).await,
+ (&Method::GET, ["share", file_id]) => get(db_conn, file_id, GetFile::ShowPage, files_dir).await,
+ (&Method::GET, ["share", file_id, "download"]) => {
get(db_conn, file_id, GetFile::Download, files_dir).await
}
_ => Ok(not_found()),