feat: store user agent with sessions

This commit is contained in:
Jef Roosens 2025-03-29 15:37:50 +01:00
parent 5112a6ce35
commit 2c44f788d9
No known key found for this signature in database
GPG key ID: 21FD3D77D56BAF49
9 changed files with 23 additions and 5 deletions

View file

@ -10,6 +10,7 @@ pub struct Session {
pub id: i64,
pub user_id: i64,
pub last_seen: i64,
pub user_agent: Option<String>,
}
impl Session {