diff options
Diffstat (limited to 'common/src/user.rs')
| -rw-r--r-- | common/src/user.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/common/src/user.rs b/common/src/user.rs index fcb8eea..ccd9c5c 100644 --- a/common/src/user.rs +++ b/common/src/user.rs @@ -4,12 +4,13 @@ Copyright (C) 2026 metamuffin <metamuffin.org> */ -use jellyobject::fields; +use jellyobject::{enums, fields}; fields! { USER_LOGIN: &str = b"Ulgn"; USER_PASSWORD: &[u8] = b"Upwd"; USER_NAME: &str = b"Unam"; + USER_THEME: &str = b"Uthm"; USER_ADMIN: () = b"Uadm"; UDATA_WATCHED: () = b"Dwat"; |