mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-16 09:24:00 +00:00
31 lines
888 B
Rust
31 lines
888 B
Rust
|
use crate::{schema::post_report, source::post::Post};
|
||
|
use serde::{Deserialize, Serialize};
|
||
|
|
||
|
#[derive(Identifiable, Queryable, Associations, PartialEq, Serialize, Deserialize, Debug, Clone)]
|
||
|
#[belongs_to(Post)]
|
||
|
#[table_name = "post_report"]
|
||
|
pub struct PostReport {
|
||
|
pub id: i32,
|
||
|
pub creator_id: i32,
|
||
|
pub post_id: i32,
|
||
|
pub original_post_name: String,
|
||
|
pub original_post_url: Option<String>,
|
||
|
pub original_post_body: Option<String>,
|
||
|
pub reason: String,
|
||
|
pub resolved: bool,
|
||
|
pub resolver_id: Option<i32>,
|
||
|
pub published: chrono::NaiveDateTime,
|
||
|
pub updated: Option<chrono::NaiveDateTime>,
|
||
|
}
|
||
|
|
||
|
#[derive(Insertable, AsChangeset, Clone)]
|
||
|
#[table_name = "post_report"]
|
||
|
pub struct PostReportForm {
|
||
|
pub creator_id: i32,
|
||
|
pub post_id: i32,
|
||
|
pub original_post_name: String,
|
||
|
pub original_post_url: Option<String>,
|
||
|
pub original_post_body: Option<String>,
|
||
|
pub reason: String,
|
||
|
}
|