Adding constant for updating user name endpoint

This commit is contained in:
2026-06-12 16:24:06 -04:00
parent e3ee24c131
commit 86e42fc915
+2
View File
@@ -17,4 +17,6 @@ pub mod endpoints {
pub const REFRESH_TOKEN: &str = "/api/v1/token/refresh";
/// Endpoint constant for updating password
pub const UPDATE_PASSWORD: &str = "/api/v1/user/password/update";
/// Endpoint constant for updating user's name
pub const UPDATE_USER_NAME: &str = "/api/v1/user/name/update";
}