2021-03-18 20:25:21 +00:00
|
|
|
use crate::{schema::comment_report, source::comment::Comment, CommentId, PersonId};
|
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 {
|
|
|
|
pub id: i32,
|
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,
|
|
|
|
}
|