added global room creation in frontend and fixed global rooms

This commit is contained in:
2025-12-18 08:06:20 +01:00
parent d20962101e
commit 9114a1383b
2 changed files with 22 additions and 11 deletions

View File

@@ -80,7 +80,7 @@ async fn ws_handler(
Extension(realtime): Extension<Realtime>,
Extension(db): Extension<sqlx::PgPool>,
) -> Result<impl IntoResponse, axum::http::StatusCode> {
tracing::info!("recieved ws handshake: {}", room_uuid);
// tracing::info!("recieved ws handshake: {}", room_uuid);
let room_id = room_id_from_uuid(&db, room_uuid)
.await