mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-16 01:14:02 +00:00
c9f1407429
* Initial commit to bump diesel to 2.0.0-rc.0 and see what happens * Add chrono feature from diesel * db_schema crate is close to building? * Upgrade diesel-derive-newtype * Mostly modifying references to connections to be mutable ones; also used new way to do migrations as suggested by the migration guide; a lot more compiles now, though I can't figure out this tricky ToSql issue at the moment * Running clippy --fix * Trying to fix drone clippy 1 * Fix clippy * Upgrade clux-musl * Trying to fix drone clippy 2 * Trying to fix drone clippy 3 * Trying to fix drone clippy 5 * Adding diesel table aliases, removing sql view hack. Fixes #2101 Co-authored-by: Steven Chu <stevenc1@gmail.com> Co-authored-by: Nutomic <me@nutomic.com>
76 lines
2.5 KiB
Rust
76 lines
2.5 KiB
Rust
use crate::newtypes::{LocalUserId, PersonId};
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
#[cfg(feature = "full")]
|
|
use crate::schema::local_user;
|
|
|
|
#[derive(Clone, PartialEq, Eq, Debug, Serialize, Deserialize)]
|
|
#[cfg_attr(feature = "full", derive(Queryable, Identifiable))]
|
|
#[cfg_attr(feature = "full", diesel(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 interface_language: 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,
|
|
pub show_read_posts: bool,
|
|
pub show_new_post_notifs: bool,
|
|
pub email_verified: bool,
|
|
pub accepted_application: bool,
|
|
}
|
|
|
|
// TODO redo these, check table defaults
|
|
#[derive(Clone, Default)]
|
|
#[cfg_attr(feature = "full", derive(Insertable, AsChangeset))]
|
|
#[cfg_attr(feature = "full", diesel(table_name = local_user))]
|
|
pub struct LocalUserForm {
|
|
pub person_id: Option<PersonId>,
|
|
pub password_encrypted: Option<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 interface_language: 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>,
|
|
pub show_read_posts: Option<bool>,
|
|
pub show_new_post_notifs: Option<bool>,
|
|
pub email_verified: Option<bool>,
|
|
pub accepted_application: Option<bool>,
|
|
}
|
|
|
|
/// A local user view that removes password encrypted
|
|
#[derive(Clone, PartialEq, Eq, Debug, Serialize, Deserialize)]
|
|
#[cfg_attr(feature = "full", derive(Queryable, Identifiable))]
|
|
#[cfg_attr(feature = "full", diesel(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 interface_language: 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,
|
|
pub show_read_posts: bool,
|
|
pub show_new_post_notifs: bool,
|
|
pub email_verified: bool,
|
|
pub accepted_application: bool,
|
|
}
|