blob: 939438d382e4aee16f887cf8d9e915e900dc2a2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/*
This file is part of jellything (https://codeberg.org/metamuffin/jellything)
which is licensed under the GNU Affero General Public License (version 3); see /COPYING.
Copyright (C) 2026 metamuffin <metamuffin.org>
*/
use jellyobject::fields;
fields! {
USER_LOGIN: &str = 1001 "login";
USER_PASSWORD: &str = 1002 "password";
USER_NAME: &str = 1003 "name";
USER_ADMIN: () = 1004 "admin";
UDATA_WATCHED: () = 1005 "watched";
UDATA_RATING: f64 = 1006 "rating";
}
|