From 2ac267f323ff0d06acc1c49925866091f4154731 Mon Sep 17 00:00:00 2001 From: phoenix Date: Fri, 12 Jun 2026 16:59:57 -0400 Subject: [PATCH] Making endpoint available --- src/lib.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index fbfa407..d56cab5 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -114,6 +114,10 @@ pub mod init { callers::endpoints::UPDATE_PASSWORD, patch(callers::login::update_password), ) + .route( + callers::endpoints::UPDATE_USER_NAME, + patch(callers::login::update_name_of_user), + ) .layer(cors::configure_cors().await) }