mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-16 01:14:02 +00:00
Nutomic
efee2062dd
* Mark account as bot. Fixes #1357 * Fix clippy * Federate bot status using actor `type` field * fix clippy Co-authored-by: Dessalines <tyhou13@gmx.com>
58 lines
1.7 KiB
Rust
58 lines
1.7 KiB
Rust
use crate::{schema::local_user, LocalUserId, PersonId};
|
|
use serde::Serialize;
|
|
|
|
#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize)]
|
|
#[table_name = "local_user"]
|
|
pub struct LocalUser {
|
|
pub id: LocalUserId,
|
|
pub person_id: PersonId,
|
|
pub password_encrypted: String,
|
|
pub email: Option<String>,
|
|
pub show_nsfw: bool,
|
|
pub theme: String,
|
|
pub default_sort_type: i16,
|
|
pub default_listing_type: i16,
|
|
pub lang: String,
|
|
pub show_avatars: bool,
|
|
pub send_notifications_to_email: bool,
|
|
pub validator_time: chrono::NaiveDateTime,
|
|
pub show_bot_accounts: bool,
|
|
pub show_scores: bool,
|
|
}
|
|
|
|
// TODO redo these, check table defaults
|
|
#[derive(Insertable, AsChangeset, Clone, Default)]
|
|
#[table_name = "local_user"]
|
|
pub struct LocalUserForm {
|
|
pub person_id: PersonId,
|
|
pub password_encrypted: String,
|
|
pub email: Option<Option<String>>,
|
|
pub show_nsfw: Option<bool>,
|
|
pub theme: Option<String>,
|
|
pub default_sort_type: Option<i16>,
|
|
pub default_listing_type: Option<i16>,
|
|
pub lang: Option<String>,
|
|
pub show_avatars: Option<bool>,
|
|
pub send_notifications_to_email: Option<bool>,
|
|
pub show_bot_accounts: Option<bool>,
|
|
pub show_scores: Option<bool>,
|
|
}
|
|
|
|
/// A local user view that removes password encrypted
|
|
#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize)]
|
|
#[table_name = "local_user"]
|
|
pub struct LocalUserSettings {
|
|
pub id: LocalUserId,
|
|
pub person_id: PersonId,
|
|
pub email: Option<String>,
|
|
pub show_nsfw: bool,
|
|
pub theme: String,
|
|
pub default_sort_type: i16,
|
|
pub default_listing_type: i16,
|
|
pub lang: String,
|
|
pub show_avatars: bool,
|
|
pub send_notifications_to_email: bool,
|
|
pub validator_time: chrono::NaiveDateTime,
|
|
pub show_bot_accounts: bool,
|
|
pub show_scores: bool,
|
|
}
|