2021-09-28 10:36:17 +00:00
|
|
|
use crate::{
|
2021-10-16 13:33:38 +00:00
|
|
|
newtypes::{CommentId, CommentReportId, PersonId},
|
2021-09-28 10:36:17 +00:00
|
|
|
schema::comment_report,
|
|
|
|
source::comment::Comment,
|
|
|
|
};
|
2020-12-21 13:38:34 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
|
2020-12-21 14:28:20 +00:00
|
|
|
#[derive(
|
|
|
|
Identifiable, Queryable, Associations, PartialEq, Serialize, Deserialize, Debug, Clone,
|
|
|
|
)]
|
2020-12-21 13:38:34 +00:00
|
|
|
#[belongs_to(Comment)]
|
|
|
|
#[table_name = "comment_report"]
|
|
|
|
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>,
|
2020-12-21 13:38:34 +00:00
|
|
|
pub published: chrono::NaiveDateTime,
|
|
|
|
pub updated: Option<chrono::NaiveDateTime>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Insertable, AsChangeset, Clone)]
|
|
|
|
#[table_name = "comment_report"]
|
|
|
|
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,
|
|
|
|
}
|