update user fetch

This commit is contained in:
2025-12-04 17:18:28 +01:00
parent 1821c38f8b
commit 5a8d1e447b
8 changed files with 4 additions and 4 deletions

View File

@@ -20,6 +20,6 @@ pub fn chat_routes() -> Router<AppState> {
.route("/send_message", post(send_message))
.route("/get_conv", post(get_convs))
.route("/get_message", get(get_message))
.route("/hotel_users", get(get_hotel_users))
.route("/hotel_users", post(get_hotel_users))
}