2021-09-28 10:36:17 +00:00
|
|
|
use crate::{schema::post_report, source::post::Post, DbUrl, PersonId, PostId, PostReportId};
|
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(Post)]
|
|
|
|
#[table_name = "post_report"]
|
|
|
|
pub struct PostReport {
|
2021-09-28 10:36:17 +00:00
|
|
|
pub id: PostReportId,
|
2021-03-18 20:25:21 +00:00
|
|
|
pub creator_id: PersonId,
|
|
|
|
pub post_id: PostId,
|
2020-12-21 13:38:34 +00:00
|
|
|
pub original_post_name: String,
|
2021-03-02 12:41:48 +00:00
|
|
|
pub original_post_url: Option<DbUrl>,
|
2020-12-21 13:38:34 +00:00
|
|
|
pub original_post_body: Option<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 = "post_report"]
|
|
|
|
pub struct PostReportForm {
|
2021-03-18 20:25:21 +00:00
|
|
|
pub creator_id: PersonId,
|
|
|
|
pub post_id: PostId,
|
2020-12-21 13:38:34 +00:00
|
|
|
pub original_post_name: String,
|
2021-03-02 12:41:48 +00:00
|
|
|
pub original_post_url: Option<DbUrl>,
|
2020-12-21 13:38:34 +00:00
|
|
|
pub original_post_body: Option<String>,
|
|
|
|
pub reason: String,
|
|
|
|
}
|