mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-15 17:03:59 +00:00
39 lines
1.3 KiB
Rust
39 lines
1.3 KiB
Rust
use crate::newtypes::{CommentId, PersonId, PersonMentionId};
|
|
#[cfg(feature = "full")]
|
|
use crate::schema::person_mention;
|
|
use chrono::{DateTime, Utc};
|
|
use serde::{Deserialize, Serialize};
|
|
#[cfg(feature = "full")]
|
|
use ts_rs::TS;
|
|
|
|
#[derive(Clone, PartialEq, Eq, Debug, Serialize, Deserialize)]
|
|
#[cfg_attr(
|
|
feature = "full",
|
|
derive(Queryable, Selectable, Associations, Identifiable, TS)
|
|
)]
|
|
#[cfg_attr(feature = "full", diesel(belongs_to(crate::source::comment::Comment)))]
|
|
#[cfg_attr(feature = "full", diesel(table_name = person_mention))]
|
|
#[cfg_attr(feature = "full", diesel(check_for_backend(diesel::pg::Pg)))]
|
|
#[cfg_attr(feature = "full", ts(export))]
|
|
/// A person mention.
|
|
pub struct PersonMention {
|
|
pub id: PersonMentionId,
|
|
pub recipient_id: PersonId,
|
|
pub comment_id: CommentId,
|
|
pub read: bool,
|
|
pub published: DateTime<Utc>,
|
|
}
|
|
|
|
#[cfg_attr(feature = "full", derive(Insertable, AsChangeset))]
|
|
#[cfg_attr(feature = "full", diesel(table_name = person_mention))]
|
|
pub struct PersonMentionInsertForm {
|
|
pub recipient_id: PersonId,
|
|
pub comment_id: CommentId,
|
|
pub read: Option<bool>,
|
|
}
|
|
|
|
#[cfg_attr(feature = "full", derive(AsChangeset))]
|
|
#[cfg_attr(feature = "full", diesel(table_name = person_mention))]
|
|
pub struct PersonMentionUpdateForm {
|
|
pub read: Option<bool>,
|
|
}
|