|
|
@ -21,9 +21,9 @@ pub struct NewUserAccountEntity { |
|
|
|
pub password: String,
|
|
|
|
pub guildcard: u32,
|
|
|
|
pub team_id: Option<u32>,
|
|
|
|
pub banned: bool,
|
|
|
|
pub muted_until: SystemTime,
|
|
|
|
pub created_at: SystemTime,
|
|
|
|
pub banned_until: Option<chrono::DateTime<chrono::Utc>>,
|
|
|
|
pub muted_until: Option<chrono::DateTime<chrono::Utc>>,
|
|
|
|
pub created_at: chrono::DateTime<chrono::Utc>,
|
|
|
|
pub flags: u32,
|
|
|
|
}
|
|
|
|
|
|
|
@ -34,9 +34,9 @@ pub struct UserAccountEntity { |
|
|
|
pub password: String,
|
|
|
|
pub guildcard: u32,
|
|
|
|
pub team_id: Option<u32>,
|
|
|
|
pub banned: bool,
|
|
|
|
pub muted_until: SystemTime,
|
|
|
|
pub created_at: SystemTime,
|
|
|
|
pub banned_until: Option<chrono::DateTime<chrono::Utc>>,
|
|
|
|
pub muted_until: Option<chrono::DateTime<chrono::Utc>>,
|
|
|
|
pub created_at: chrono::DateTime<chrono::Utc>,
|
|
|
|
pub flags: u32, // TODO: is this used for anything other than character creation?
|
|
|
|
}
|
|
|
|
|
|
|
|