2022-05-03 17:44:13 +00:00
|
|
|
use crate::newtypes::{CommentId, CommentReportId, PersonId};
|
|
|
|
#[cfg(feature = "full")]
|
|
|
|
use crate::schema::comment_report;
|
2023-08-24 15:27:00 +00:00
|
|
|
use chrono::{DateTime, Utc};
|
2022-11-02 19:18:22 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
2023-04-26 04:26:10 +00:00
|
|
|
use serde_with::skip_serializing_none;
|
|
|
|
#[cfg(feature = "full")]
|
|
|
|
use ts_rs::TS;
|
2022-05-03 17:44:13 +00:00
|
|
|
|
2023-04-26 04:26:10 +00:00
|
|
|
#[skip_serializing_none]
|
2022-09-26 14:09:32 +00:00
|
|
|
#[derive(PartialEq, Eq, Serialize, Deserialize, Debug, Clone)]
|
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 = comment_report))]
|
2023-04-26 04:26:10 +00:00
|
|
|
#[cfg_attr(feature = "full", ts(export))]
|
2023-05-10 19:20:39 +00:00
|
|
|
/// A comment report.
|
2020-12-21 13:38:34 +00:00
|
|
|
pub struct CommentReport {
|
2021-09-28 10:36:17 +00:00
|
|
|
pub id: CommentReportId,
|
2021-03-18 20:25:21 +00:00
|
|
|
pub creator_id: PersonId,
|
|
|
|
pub comment_id: CommentId,
|
2020-12-21 13:38:34 +00:00
|
|
|
pub original_comment_text: String,
|
|
|
|
pub reason: String,
|
|
|
|
pub resolved: bool,
|
2021-03-18 20:25:21 +00:00
|
|
|
pub resolver_id: Option<PersonId>,
|
2023-08-24 15:27:00 +00:00
|
|
|
pub published: DateTime<Utc>,
|
|
|
|
pub updated: Option<DateTime<Utc>>,
|
2020-12-21 13:38:34 +00:00
|
|
|
}
|
|
|
|
|
2022-05-03 17:44:13 +00:00
|
|
|
#[derive(Clone)]
|
|
|
|
#[cfg_attr(feature = "full", derive(Insertable, AsChangeset))]
|
2022-09-26 14:09:32 +00:00
|
|
|
#[cfg_attr(feature = "full", diesel(table_name = comment_report))]
|
2020-12-21 13:38:34 +00:00
|
|
|
pub struct CommentReportForm {
|
2021-03-18 20:25:21 +00:00
|
|
|
pub creator_id: PersonId,
|
|
|
|
pub comment_id: CommentId,
|
2020-12-21 13:38:34 +00:00
|
|
|
pub original_comment_text: String,
|
|
|
|
pub reason: String,
|
|
|
|
}
|