diff --git a/visions/server/src/core.rs b/visions/server/src/core.rs
index 079c6bb..e9224f6 100644
--- a/visions/server/src/core.rs
+++ b/visions/server/src/core.rs
@@ -10,8 +10,7 @@ use uuid::Uuid;
use crate::{
asset_db::{self, AssetId, Assets},
- database::{CharacterId, Database, GameId, SessionId, UserId},
- types::{AppError, FatalError, Game, Message, Rgb, Tabletop, User},
+ database::{CharacterId, Database, GameId, SessionId, UserId}, types::{AppError, FatalError, Game, GameOverview, Message, Rgb, Tabletop, User, UserProfile},
};
const DEFAULT_BACKGROUND_COLOR: Rgb = Rgb {
@@ -126,9 +125,20 @@ impl Core {
}
}
- pub async fn user(&self, user_id: UserId) -> ResultExt