2022-05-03 17:44:13 +00:00
|
|
|
use crate::newtypes::{CommentId, PersonId, PersonMentionId};
|
|
|
|
#[cfg(feature = "full")]
|
|
|
|
use crate::schema::person_mention;
|
2022-11-02 19:18:22 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
2023-04-26 04:26:10 +00:00
|
|
|
#[cfg(feature = "full")]
|
|
|
|
use ts_rs::TS;
|
2022-05-03 17:44:13 +00:00
|
|
|
|
2022-09-26 14:09:32 +00:00
|
|
|
#[derive(Clone, PartialEq, Eq, Debug, Serialize, Deserialize)]
|
2023-04-26 04:26:10 +00:00
|
|
|
#[cfg_attr(feature = "full", derive(Queryable, Associations, Identifiable, TS))]
|
2022-09-26 14:09:32 +00:00
|
|
|
#[cfg_attr(feature = "full", diesel(belongs_to(crate::source::comment::Comment)))]
|
|
|
|
#[cfg_attr(feature = "full", diesel(table_name = person_mention))]
|
2023-04-26 04:26:10 +00:00
|
|
|
#[cfg_attr(feature = "full", ts(export))]
|
2023-05-10 19:20:39 +00:00
|
|
|
/// A person mention.
|
2021-02-26 13:49:58 +00:00
|
|
|
pub struct PersonMention {
|
2021-03-18 20:25:21 +00:00
|
|
|
pub id: PersonMentionId,
|
|
|
|
pub recipient_id: PersonId,
|
|
|
|
pub comment_id: CommentId,
|
2020-12-21 13:38:34 +00:00
|
|
|
pub read: bool,
|
|
|
|
pub published: chrono::NaiveDateTime,
|
|
|
|
}
|
|
|
|
|
2022-05-03 17:44:13 +00:00
|
|
|
#[cfg_attr(feature = "full", derive(Insertable, AsChangeset))]
|
2022-09-26 14:09:32 +00:00
|
|
|
#[cfg_attr(feature = "full", diesel(table_name = person_mention))]
|
2022-10-27 09:24:07 +00:00
|
|
|
pub struct PersonMentionInsertForm {
|
2021-03-18 20:25:21 +00:00
|
|
|
pub recipient_id: PersonId,
|
|
|
|
pub comment_id: CommentId,
|
2020-12-21 13:38:34 +00:00
|
|
|
pub read: Option<bool>,
|
|
|
|
}
|
2022-10-27 09:24:07 +00:00
|
|
|
|
|
|
|
#[cfg_attr(feature = "full", derive(AsChangeset))]
|
|
|
|
#[cfg_attr(feature = "full", diesel(table_name = person_mention))]
|
|
|
|
pub struct PersonMentionUpdateForm {
|
|
|
|
pub read: Option<bool>,
|
|
|
|
}
|