Footer and Setting Fixes

This commit is contained in:
2026-04-05 00:16:27 -04:00
parent 29a006ee87
commit 0efd9b8eb8
10 changed files with 85 additions and 8 deletions
+1
View File
@@ -70,6 +70,7 @@ async fn main() {
.route("/auth/login", post(auth::login))
.route("/auth/logout", post(auth::logout))
.route("/auth/me", get(auth::me).put(auth::update_profile))
.route("/auth/storage", get(auth::storage_stats))
.route("/auth/change-password", put(auth::change_password))
.route("/folders", get(folders::list_folders).post(folders::create_folder))
.route("/folders/{id}", delete(folders::delete_folder).patch(folders::update_folder))