mirror of
https://github.com/LemmyNet/lemmy.git
synced 2025-02-06 17:14:48 +00:00
23 lines
676 B
Rust
23 lines
676 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", 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", table_name = "email_verification")]
|
|
pub struct EmailVerificationForm {
|
|
pub local_user_id: LocalUserId,
|
|
pub email: String,
|
|
pub verification_token: String,
|
|
}
|