mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-16 01:14:02 +00:00
cb753b045f
* Group imports with rustfmt * Running cargo fmt again. Co-authored-by: Felix Ableitner <me@nutomic.com>
22 lines
687 B
Rust
22 lines
687 B
Rust
use crate::newtypes::LocalUserId;
|
|
#[cfg(feature = "full")]
|
|
use crate::schema::email_verification;
|
|
|
|
#[derive(Clone)]
|
|
#[cfg_attr(feature = "full", derive(Queryable, Identifiable))]
|
|
#[cfg_attr(feature = "full", diesel(table_name = email_verification))]
|
|
pub struct EmailVerification {
|
|
pub id: i32,
|
|
pub local_user_id: LocalUserId,
|
|
pub email: String,
|
|
pub verification_code: String,
|
|
pub published: chrono::NaiveDateTime,
|
|
}
|
|
|
|
#[cfg_attr(feature = "full", derive(Insertable, AsChangeset))]
|
|
#[cfg_attr(feature = "full", diesel(table_name = email_verification))]
|
|
pub struct EmailVerificationForm {
|
|
pub local_user_id: LocalUserId,
|
|
pub email: String,
|
|
pub verification_token: String,
|
|
}
|