diff options
author | 2025-04-03 03:41:38 +0100 | |
---|---|---|
committer | 2025-04-03 03:41:38 +0100 | |
commit | 91f1994af940085d5d475a97820900ebbf0eb553 (patch) | |
tree | 6aab872f71d17a785d3d9286742fef38983d274c /filamento/src/user.rs | |
parent | 9ce3827a7d25714d17f266f0f50bb29f41090175 (diff) | |
download | luz-91f1994af940085d5d475a97820900ebbf0eb553.tar.gz luz-91f1994af940085d5d475a97820900ebbf0eb553.tar.bz2 luz-91f1994af940085d5d475a97820900ebbf0eb553.zip |
feat: better message handling, pep publish, xep_0172: nick
Diffstat (limited to 'filamento/src/user.rs')
-rw-r--r-- | filamento/src/user.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/filamento/src/user.rs b/filamento/src/user.rs index 9914d14..85471d5 100644 --- a/filamento/src/user.rs +++ b/filamento/src/user.rs @@ -1,7 +1,8 @@ use jid::JID; -#[derive(Debug, sqlx::FromRow)] +#[derive(Debug, sqlx::FromRow, Clone)] pub struct User { pub jid: JID, + pub nick: Option<String>, pub cached_status_message: Option<String>, } |